其他分享
首页 > 其他分享> > 4、在IntelliJ idea 中基于spring-boot-devtools 实现项目热启动

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

作者:互联网

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

2、开启idea自动build功能 

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

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>

 

标签:IntelliJ,spring,boot,idea,maven,热启动,devtools,true
来源: https://blog.csdn.net/suoyanming/article/details/90290029