4、在IntelliJ idea 中基于spring-boot-devtools 实现项目热启动

1、引入spring-boot-devtools maven依赖

4、在IntelliJ idea 中基于spring-boot-devtools 实现项目热启动

2、开启idea自动build功能 

4、在IntelliJ idea 中基于spring-boot-devtools 实现项目热启动

3、组合键:Shift+ALT+Ctrl+/ ,选择“Registry”,回车,找到“complier.automake.allow.when.app.running”

4、在IntelliJ idea 中基于spring-boot-devtools 实现项目热启动

4、 设置maven plugin属性 <fork>true</fork> <!-- fork is enable,用于明确表示编译版本配置的可用 -->


<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--fork : 如果没有该项配置,devtools不会起作用,即应用不会restart -->
<fork>true</fork>
</configuration>
</plugin>

 

上一篇:springboot(4)springboot热部署插件及idea热部署


下一篇:chrome安装react-devtools开发工具插件