springboot 熱部署

1、springboot項目可經過配置pom文件 spring

<!-- 熱部署 -->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-devtools</artifactId>
   <scope>true</scope>
   <optional>true</optional>
</dependency>
<plugin>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-maven-plugin</artifactId>
   <configuration>
      <!-- 沒有該配置,devtools 不生效 -->
      <fork>true</fork>
   </configuration>
</plugin>

而後修改 configurations 配置 springboot

最後在配置文件中配置maven

spring:
    devtools:
        restart:
            enabled: false

perfect end!spring-boot

2、或者安裝jrebel插件進行啓動插件

相關文章
相關標籤/搜索