idea 热部署的配置

 

 

 1 增加

第一步在pom.xml文件中添加依赖

<!-- springboot 热部署 -->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <scope>runtime</scope>

2:POM.xml:

<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:开启自动编译的选项:

 

 4:

 

 

5:重启,最新版可以不用

posted @ 2020-03-27 17:18  不死码农  阅读(3198)  评论(0编辑  收藏  举报