spring boot 热部署

工具 IntelliJ Idea

  • 添加jar包
            
                org.springframework.boot
                spring-boot-devtools
                true
            
  • 在 plugin 中配置另外一个属性 fork,并且配置为 true
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    true
                
            
        
    
  • OK,以上两步配置完成,如果使用的是 Eclipse,那么恭喜你大功告成了。
  • 如果使用的是 Idea 还需要做以下配置

选择 File-Settings-Compiler 勾选 Build project automatically,低版本 Idea 勾选 make project automatically。

使用快捷键:CTRL + SHIFT + A 输入Registry 找到选项 compile.automake.allow.when.app.running 勾选

image.png

全部配置完成后,Idea 就支持热部署了

你可能感兴趣的:(spring boot 热部署)