springboot+idea 配置热部署

springboot+idea 配置热部署


1.maven

1
2
3
4
5
6
7
<!-- 热部署模块 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>

2.maven 插件

1
2
3
4
5
6
7
8
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>

3.idea 设置

ctrl+alt+s 打开idea的设置,
找到[Build,Execution,Deployment] - > [Complier] -> 打勾[Build project automatically]

4.idea设置

ctrl+alt+shift+/, 打开的窗口选择第一项[Registry]
找到[ compiler.automake.allow.when.app.running ] 后面打勾

5.debug模式下启动项目

不出意外,修改类会自动加载,并且速度非常快

springboot+idea 配置热部署
https://www.huangchaoyu.com/4243760172.html
作者
hcy
发布于
2019年5月31日
更新于
2024年8月17日
许可协议