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>