导入依赖
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-java8time</artifactId>
</dependency>
文本:th:text不转义字符 即里面内容的标签内容,th:utext转义字符
数组:<h3 th:each ="user:${user}" th:text="{$user}"></h3>
原文:https://www.cnblogs.com/itwxx/p/11980882.html