Springboot的thymeleaf使用
public static final String DEFAULT_PREFIX = "classpath:/templates/";
public static final String DEFAULT_SUFFIX = ".html";
thymeleaf的导包
!--thymeleaf基于最新版开发 start--
dependency
groupIdorg.thymeleaf/groupId
artifactIdthymeleaf-spring5/artifactId
/dependency
dependency
groupIdorg.thymeleaf.extras/groupId
artifactIdthymeleaf-extras-java8time/artifactId
/dependency
!--thymeleaf end--
thymeleaf遍历集合
h5 th:each="user:${users}" th:text="${user}"/
h5 th:each="user:${users}"[[ ${user} ]]/h5