IDEA热部署不生效解决方案

今天尝试热部署,没想到弄了半天没反应,最后经查阅发现此问题,希望同样问题的这个没配置的去添加试下,希望能帮到你
第一步pom文件引入坐标


	        org.springframework.boot
	        spring-boot-devtools
	        true
	    

第二步在pom文件增加下面配置


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

第三步
idea里面要设置
1、在IDEA中开启自动编译
在这里插入图片描述
2、Shift+Ctrl+Alt+/,选择Registry
选 compiler.automake.allow.when.app.running
重启项目就可以了

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