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

IDEA中Spring boot配置热部署

时间:2018-05-22 16:40:05      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:UI   dep   ddr   dea   http   exec   pre   bsp   fork   

pom文件中添加

 1 <!-- 热部署 -->
 2 <dependency>
 3     <groupId>org.springframework.boot</groupId>
 4     <artifactId>spring-boot-devtools</artifactId>
 5     <optional>true</optional>
 6     <scope>true</scope>
 7 </dependency>
 8  ----------------------------------------------------
 9 <build>
10     <plugins>
11         <plugin>
12             <groupId>org.springframework.boot</groupId>
13             <artifactId>spring-boot-maven-plugin</artifactId>
14             <configuration>
15                 <!-- 没有该配置,devtools 不生效 -->
16                 <fork>true</fork>
17                 <addResources>true</addResources>
18             </configuration>
19         </plugin>
20     </plugins>
21 </build>

file-》settings-》build,execution,deployment-》Compiler

技术分享图片

alt + shift + a 搜索 registry 选第一个

弹出框后下拉找到 compiler.automake.allow.when.app.running 勾选上即可

技术分享图片

 

IDEA中Spring boot配置热部署

标签:UI   dep   ddr   dea   http   exec   pre   bsp   fork   

原文地址:https://www.cnblogs.com/kaishi/p/9072641.html

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