1、可以在yaml文件或者properties文件里配置。
properties 方式:
#thymeleaf 页面的缓存开关,默认 true 开启缓存。
#关闭缓存后在启动项里面勾选Update resources可以实现热部署,这里的热部署是指SpringBoot Tomcat服务器的热部署,而不是Spring Boot DevTools。
spring.thymeleaf.cache=false
#设置访问前缀和后缀,可以不写,使用默认值即可
spring.thymeleaf.suffix=.html
spring.thymeleaf.prefix=classpath:/templates/
yaml方式:
spring:
thymeleaf: cache=false
suffix: html
prefix: classpath:/templates/