springboot之热部署

Posted 娜娜娜娜小姐姐

tags:

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

一、介绍

  spring为开发者提供了一个名为spring-boot-devtools的模块来使Spring Boot应用支持热部署,提高开发者的开发效率,无需手动重启Spring Boot应用。

二、配置:

pom.xml

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

idea配置

1.选中 File->Settings->Compiler->Build project automatically

2. 快捷键 ctrl + shift +a 输入registry,勾选 Compiler autoMake allow when app running

 完成以上配置即可使用。

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

SpringBoot初始教程之热部署

springboot之热部署

SpringBoot简化开发之热部署启动配置

1. Spring boot 之热部署

spring boot 之热部署

Nginx之热部署