码迷,mamicode.com
首页 > 其他好文 > 详细

Idea 热部署

时间:2021-06-20 17:42:40      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:you   uil   artifact   plugin   maven   automatic   build   lazy   idea   

 

1. Adding devtoolls to your project

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>

2.Adding plugin to your pom.xml<build>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<addResources>true</addResources>
</configuration>
</plugin>
</plugins>
</build>

3.Enabling automatic build

技术图片

 

 

4 Update the value of registry

技术图片

 

 5 重启idea

Idea 热部署

标签:you   uil   artifact   plugin   maven   automatic   build   lazy   idea   

原文地址:https://www.cnblogs.com/chentaohere/p/14904826.html

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