springboot配置devtools热部署
作者:互联网
需要引入该依赖
<!--热部署-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
父工程的pom.xml引入
<build>
<plugins>
<!--配置热部署需要该配置-->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<configuration>
<fork>true</fork>
<addResources>true</addResources>
</configuration>
</plugin>
</plugins>
</build>
在setting里面的勾上图上框的选项
update the value of
勾上自动编译
标签:springboot,部署,spring,boot,springframework,org,devtools,true 来源: https://www.cnblogs.com/rzkwz/p/16439902.html