1
1

index.html 404 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>zheng-demo</title>
  6. </head>
  7. <body>
  8. <h1 th:text="${host}">Hello World</h1>
  9. <ul th:each="user : ${users}">
  10. <li th:text="${user.id}">1</li>
  11. <li th:text="${user.age}">2</li>
  12. <li th:text="${user.name}">3</li>
  13. </ul>
  14. </body>
  15. </html>