1、可以在yaml文件或者properties文件里配置。
    properties 方式:

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

    yaml方式:

    spring:
      thymeleaf: cache=false
      suffix: html
      prefix: classpath:/templates/