解决新版 Idea 中 SpringBoot 热部署不生效

解决新版 Idea 中 SpringBoot 热部署不生效_第1张图片 标题

依赖中添加


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

插件中设置


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

1.设置自动编译

Idea 中 setting -> Compiler -> 勾选automatically解决新版 Idea 中 SpringBoot 热部署不生效_第2张图片

2. spring boot 启动设置

编辑启动配置,点击modify options。

options 中需要修改两个配置:

        1.On 'Update' action 中选择 Hot swap classes and update trigger file if failed

        2.On frame deactivation 中选择 Update classes and resources

        3.以 debug 模式启动应用

解决新版 Idea 中 SpringBoot 热部署不生效_第3张图片

 解决新版 Idea 中 SpringBoot 热部署不生效_第4张图片

 解决新版 Idea 中 SpringBoot 热部署不生效_第5张图片

 解决新版 Idea 中 SpringBoot 热部署不生效_第6张图片

解决新版 Idea 中 SpringBoot 热部署不生效_第7张图片

你可能感兴趣的:(spring,boot,intellij-idea,java)