SpringBoot工程 maven项目
想要修改代码后工程自动快速启动。
是热启动吗,pom.xml
添加<!-- 热启动 -->
org.springframework.boot
spring-boot-devtools
true
<!-- 热启动 -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
就行了启动以后,修改完自动启动
上面的不知道咋回事,是加载包的配置,竟然写不上去