跳到主要内容

SpringBoot热更新

· 阅读需 1 分钟
文浩Marvin

步骤一

pom.xml 中在加入依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>

然后再<build>下添加如下依赖。

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>

步骤二

(1)打开设置勾选自动构建项目

image-20220506130419248

(2)高级设置中勾选自动 make,老版 IDEA 需要ctrl + shift + alt + /,选择注册表,勾上 Compiler autoMake allow when app running,但新版中移到高级设置中。

image-20220506130533312

接着启动项目,修改文件即可自动热加载,无需手动重新运行。

Loading Comments...