热部署Devtools

热部署的作用是代码改动自动重启,不需要人工手动重启,方便调试!

步骤:

1. 在子module中的POM.xml中添加引用

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

热部署Devtools

2.在父POM.xml中添加plugin

 <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <configuration>
          <fork>true</fork>
          <addResources>true</addResources>
        </configuration>
      </plugin>

热部署Devtools

 

 

3.开启设置

热部署Devtools

4.更新值

ctrl+shift+Alt+/

热部署Devtools

 

 热部署Devtools

 

 热部署Devtools

5 重启IDEA

关闭IDEA重新开启,编写代码后ctrl+s保存,过一会就会自动重启。

上一篇:vue-devtools 安装


下一篇:热部署工具devtools