SpringBoot环境下thymeleaf 热部署 (界面自动刷新 )

1. 修改pom.xml


    org.springframework.boot
    spring-boot-devtools
    true

 

    org.springframework.boot
    spring-boot-maven-plugin
    
        true
    


2.修改application.propertis或application.yml

# 这个开发配置为false,避免改了模板还要重启服务器
spring.thymeleaf.cache=false
3. 设置IDEA

打开File->Setting->Build,Execution,Deployment->Compiler

1. 修改pom.xml


    org.springframework.boot
    spring-boot-devtools
    true

 

    org.springframework.boot
    spring-boot-maven-plugin
    
        true
    


2.修改application.propertis或application.yml

# 这个开发配置为false,避免改了模板还要重启服务器
spring.thymeleaf.cache=false
3. 设置IDEA

打开File->Setting->Build,Execution,Deployment->Compiler

SpringBoot环境下thymeleaf 热部署 (界面自动刷新 )_第1张图片

快捷键  ctrl + shift + alt + / ,选择Registry,勾上 Compiler autoMake allow when app running

 

完成后,重启一下项目或IDEA。
————————————————
版权声明:本文为CSDN博主「ziyilanbing」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/ziyilanbing/article/details/100540946

快捷键  ctrl + shift + alt + / ,选择Registry,勾上 Compiler autoMake allow when app running

 

完成后,重启一下项目或IDEA。
 

你可能感兴趣的:(intellij,idea)