【SpringBoot】——SpringBoot 热部署启动无效

正常是pom.xml 中增加一个jar包即可。



   org.springframework.boot
   spring-boot-devtools
   true

如不生效:需增加


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

如果用的编辑器是 idea ,请设置 setting - compiler ,将 Build project automatically 勾选上. 截图如下:

 

【SpringBoot】——SpringBoot 热部署启动无效_第1张图片

 

热部署已生效,截图如下:

【SpringBoot】——SpringBoot 热部署启动无效_第2张图片

 

文章参考:https://blog.csdn.net/android_ztz/article/details/79221753

 

你可能感兴趣的:(springboot)