码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot项目实现热部署

时间:2019-05-06 11:53:21      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:代码   pom   tools   maven   build   nal   group   plugins   frame   

1.添加pom依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>//该配置必须
</configuration>
</plugin>
</plugins>
</build>
2.代码修改后,在项目上点击“Build Module xxxx”

SpringBoot项目实现热部署

标签:代码   pom   tools   maven   build   nal   group   plugins   frame   

原文地址:https://blog.51cto.com/suyanzhu/2389665

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!