标签:jar tools conf rest 应用 dev start http exe




<!--添加spring-boot-devtools的jar包-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--fork : 如果没有该项配置,肯定devtools不会起作用,即应用不会restart -->
<fork>true</fork>
</configuration>
</plugin>
标签:jar tools conf rest 应用 dev start http exe
原文地址:https://www.cnblogs.com/PollyLuo/p/9629685.html