IntelliJ IDEA中项目使用Spring Boot用spring-boot-devtools无法实现热部署自动更新的问题

IDEA中spring-boot-devtools无法实现热部署自动更新的问题


版本:IntelliJ IDEA 2017.3.4
系统:Windows
eclipse中配置依赖即可实现热部署但IDEA不能,需做一些配置


step1

在pom中添加spring-boot-devtools依赖:

<dependency> 
	    <groupId>org.springframework.boot</groupId>  
	    <artifactId>spring-boot-devtools</artifactId>  
</dependency> 

step2

Settings->build,execution,deployment->compiler选项中 , build project automatically勾选上:在这里插入图片描述

step3

快捷键 ctrl + alt + shift + / ,进入Register:
在这里插入图片描述
在Register界面中把compiler.automake.allow.when.app.running选项勾选上:
在这里插入图片描述

tips

如果还不行,在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>

欢迎指正

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值