Springboot项目热部署-Devtools

Posted me-zzy

tags:

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

1.在pom.xml(如果是多模块,则此pom根据需要可设为具体模块)文件中添加

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

2.在pom.xml(如果是多模块,则此pom为父工程文件)加入插件

<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.IDEA设置自动编译

技术图片 

 4.在IDEA任意界面使用快捷键ctrl+shif+Alt+/打开如下菜单,点击第一个选项(1.Registry...)

技术图片

选择后会出现如下子菜单,勾选compiler.automake.allow.when.app.running与actionSystem.assertFocusAccessFromEdt

技术图片

5.重启IDEA。

 

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

Springboot项目热部署-Devtools

springboot的热部署

springboot热部署(spring-boot-devtools)配置及原理验证

idea内springboot项目设置热部署

springboot项目利用devtools实现热部署,改动代码自动生效

SpringBoot通过devtools实现热部署