Idea2022版本配置SpringBoot热部署的教程

2022版本配置SpringBoot热部署

网上搜到的以前版本的都是更改Registry...,勾选compiler.automake.allow.when.app.running,然后新版的IDEA的Registry...里没有这个选项,最后找到了解决方案,亲测有效,链接如下:

ref: In IntelliJ 2021.2 compiler.automake.allow.when.app.running disappear. Unable to enable live reload under Spring boot

1.IDEA版本

Idea2022版本配置SpringBoot热部署的教程_第1张图片

2. 添加依赖

  • 如果只有一个项目,直接在pom.xml里添加下面所有的即可
  • 父项目pom.xml标签内添加:

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

子项目pom.xml标签内添加,注意要在父项目xml里定义版本:

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

3.更改IDEA设置

preferences... -> Compiler

Idea2022版本配置SpringBoot热部署的教程_第2张图片

preferences... -> Advanced Settings -> Allow auto-make to start even if developed application is currently running

Idea2022版本配置SpringBoot热部署的教程_第3张图片

到此这篇关于Idea2022版本配置SpringBoot热部署的教程的文章就介绍到这了,更多相关idea配置springboot热部署内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(Idea2022版本配置SpringBoot热部署的教程)