Spring Bootz之热部署

Posted 码上加油站

tags:

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

在项目的pom.xml文件添加如下两段

<dependency>  

            <groupId>org.springframework.boot</groupId>  

            <artifactId>spring-boot-devtools</artifactId>

            <version>1.5.7.RELEASE</version>

            <optional>true</optional>  

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

Intellij IEDA开发工具,还需要到设置里将project automatically勾选上;File->Setting->Build,…->Compiler  将右侧project automatically勾上

然后ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when app running

此时重新启动项目即可实现热部署,改动任意代码会立即生效,不用再每次重新启动项目

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

spring boot 之热部署

spring-boot 速成 devtools之热部署

Spring Boot2.0之热部署原理

springboot之热部署

SpringBoot初始教程之热部署

SpringBoot初始教程之热部署