springboot原生支持thymeleaf模板,因此配置起來很是方便html
1.首先配置application.properties文件spring
spring.thymeleaf.prefic=classpath:/templates/
緩存
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
springboot
2.pom文件添加依賴app
<dependency>
spring-boot
<groupId>org.springframework.boot</groupId>
測試
<artifactId>spring-boot-starter-thymeleaf</artifactId>
spa
</dependency>
code
3.原生支持,因此配置起來很是簡單,能夠添加擴展htm
# 熱部署文件,頁面不產生緩存,及時更新
spring.thymeleaf.cache=false
spring.resources.chain.strategy.content.enabled=true
spring.resources.chain.strategy.content.paths=/**
4.簡簡單單,隨便寫一個controller測試如下就OK