和使用freemarker差不多的方式
1、导入thymeleaf的启动器
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2、编写Controller类
3、编写模板页面
注意:模板文件必须放在src/resources/templates目录下
①加上名称空间,加后就会有thymeleaf的代码提示
<html lang="en" xmlns:th="http://www.thymeleaf.org">