Spring Boot 实现热部署

Posted 晨曦_mxj

tags:

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

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-devtools</artifactId>
   <optional>true</optional>
</dependency>
<plugin>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-maven-plugin</artifactId>
   <configuration>
      <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
   </configuration>
</plugin>

 

 CTRL F9 刷新

 

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

IntelliJ IDEA Spring boot实现热部署

spring boot : 热部署

IDEA实现Spring Boot热部署

Spring Boot 开发环境热部署方案 !

Eclipse Spring Boot实现热部署

Spring Boot 实现热部署