springboot+thymeleaf热部署

1.首先需要在配置文件中设置thymeleaf缓存为false

spring:
  thymeleaf:
    cache: false

2.如果刷新页面任然无效,在idea中按Ctrl+F9重新build项目,再刷新便可以了
3.如果任然无效,那么清除浏览器缓存。
4.如果引用外部的静态文件修改,那么需要清除浏览器缓存,不然依然无效。

你可能感兴趣的:(springboot+thymeleaf热部署)