IDEA热部署不生效解决方案(亲测有效)

1.pom依赖


   
                      
    org.springframework.boot
    spring-boot-devtools   
    true        


如果是ecplise好像不用剩下的步骤了,没测过, 可以试一试

2.开启热部署


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

3.开启idea自动make功能

CTRL + SHIFT + A –> 查找make project automatically –> 选中
在这里插入图片描述
CTRL + SHIFT + A –> 查找Registry –> 找到并勾选compiler.automake.allow.when.app.running
在这里插入图片描述

4.重启IDEA

总结:以上缺一步, IDEA都不好使的。实现热部署后,包括更新Xml, Java类中新增方法等, 都试了, 都不用重启了。

*原文:https://blog.csdn.net/zyjcxc/article/details/79512975

你可能感兴趣的:(IDEA热部署不生效解决方案(亲测有效))