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版本

在这里插入图片描述

2. 添加依赖

  • 如果只有一个项目,直接在pom.xml里添加下面所有的即可
  • 子项目pom.xml<dependencie>标签内添加,注意要在父项目xml里定义版本:
	   <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-devtools</artifactId>
           <scope>runtime</scope>
           <optional>true</optional>
       </dependency>

3.更改IDEA设置

  • preferences... -> Compiler
    在这里插入图片描述

  • preferences... -> Advanced Settings -> Allow auto-make to start even if developed application is currently running
    在这里插入图片描述

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐