spring boot热部署

Posted 京亟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot热部署相关的知识,希望对你有一定的参考价值。

最近在学习spring boot,配置热部署的时候遇到问题,已解决,记录一下以免之后又忘记了。

在pom.xml中配置如下信息

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


<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>




发现热部署并不成功,遂在网上找了下解决方法
  1. setting –> compiler
    将 Build project automatically 勾选上
  2. alt + shift + a 搜索 registry 选第一个,弹出框后下拉找到 compiler.automake.allow.when.app.running 勾选上即可。























以上是关于spring boot热部署的主要内容,如果未能解决你的问题,请参考以下文章

spring boot : 热部署

Spring Boot Devtools热部署

Spring Boot 热部署

IntelliJ IDEA Spring boot实现热部署

spring-boot 热部署 intellij IDE

Idea+Spring boot 开启热部署