开启热部署

Posted wxl123

tags:

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

说明:开发的时候打开热部署,项目上线的时候一定要关闭热部署

1.添加devtools依赖,写在本模块中

    <!--般为通用配置-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

2.添加maven插件依赖,如果有父项目,将此插件写在父pom中即可

<build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <version>2.2.0.RELEASE</version>
        <configuration>
          <fork>true</fork>
          <addResources>true</addResources>
        </configuration>
      </plugin>
    </plugins>
  </build>

3.在idea中开启自动编译的权限

技术图片

4.注册

技术图片

这时会出现以下内容

技术图片

5.重启idea

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

Idea+Spring boot 开启热部署

IDEA开发SpringBoot项目开启自动编译(热部署-修改java代码时,自动重启服务器)

IDEA-SpringBoot项目设置热部署

springBoot开启热部署

开启热部署

springspring boot 开启热部署