1. pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
<plugin>
<!--熱部署配置-->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
2. idea配置
File -> Settings -> Compiler 勾選 √ Build Project automatically
3. Registry
- ctrl + shift + alt + /
- 選擇Registry
- √ Compiler autoMake allow when app running
使用效果:
檢測到更新會自動重啟服務,但是使用起來感覺並不是很便捷