在idea中spring boot热部署不生效

在IDEA中如何使用spring的热部署

1、添加maven依赖

      
            org.springframework.boot
            spring-boot-devtools
            true 
            true
        

2、插件配置

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

但是在实际使用中发现即便这样配置之后,还是没有作用,这是为什么呢?
这是因为idea默认是没有自动编译的,我们这里需要添加修改配置.打开设置

1、File-Settings-Compiler-Build Project automatically


image.png

2、ctrl + shift + A 然后输入Registry


image.png

然后勾上 Compiler autoMake allow when app running


image.png

然后就可以开心的撸代码了

你可能感兴趣的:(在idea中spring boot热部署不生效)