导入依赖
<!--thymeleaf模板-->
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-java8time</artifactId>
</dependency>
将html页面放在templates下就可。html需要导入thyemleaf约束
<html lang="en" xmlns:th="http://www.thymeleaf.org">
详细语法看在线文档
- thyemleaf在线文档:https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html
- Thymeleaf在Github的主页:https://github.com/thymeleaf/thymeleaf