springboot熱起動と熱配置について詳しく説明します。


一、熱起動:
修正後、プログラムはspring Applicationコンテキストを自動的に起動します。
Pomに直接依存を追加すればいいです。

<dependency> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-devtools</artifactId> 
      <optional>true</optional> 
 </dependency>
ここで注意したいのは、クラスのファイルが変更されるたびに、再コンパイルが必要です。サービスの再起動をトリガします。
二、熱交換または熱配置
これはspringloadedプラグインを使います。
1.依存度を追加:

<build> 
    <plugins> 
      <plugin> 
        <groupId>org.springframework.boot</groupId> 
        <artifactId>spring-boot-maven-plugin</artifactId> 
        <dependencies> 
          <!-- spring    --> 
          <dependency> 
            <groupId>org.springframework</groupId> 
            <artifactId>springloaded</artifactId> 
            <version>1.2.6.RELEASE</version> 
          </dependency> 
        </dependencies> 
      </plugin> 
    </plugins> 
  </build>
spring-boot:runを使用すると、この配置は終了します。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。