springboot原生支持thymeleaf模板,所以配置起来非常方便
1.首先配置application.properties文件
spring.thymeleaf.prefic=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
2.pom文件添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
3.原生支持,所以配置起来非常简单,可以添加扩展
# 热部署文件,页面不产生缓存,及时更新
spring.thymeleaf.cache=false
spring.resources.chain.strategy.content.enabled=true
spring.resources.chain.strategy.content.paths=/**
4.简简单单,随便写一个controller测试以下就OK