SpringBoot配置热部署
程序员文章站
2022-05-22 15:50:51
...
1.添加依赖
<!--热部署-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.5.RELEASE</version>
</dependency>
在build中添加
2.修改setting
3.启用在项目运行时允许编译
同时按 Ctrl + Shit +Alt + /
选中点上后面的勾
这样配置完启动项目,修改代码后会自动编译。