pom.xml
-
添加spring-boot-devtools
-
添加fork为true
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<!--编译时不会打包-->
<scope>runtime</scope>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!--添加<fork>true</fork>-->
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
IDEA配置
- Preferences中检查并配置Build project automatically
- cmd+alt+shift+/ Registry中检查并配置compiler.automake.allow.when.app.running