Intellij IDEA 2018.2.2 SpringBoot熱啓動 (Maven)

1、IDEA 工具配置css

1. 打開IDEA 設置界面,選擇編譯,按圖打勾。html

image

2 . 而後 Shift+Ctrl+Alt+/,選擇Registry  spring

image 

3 . compiler.automake.allow.when.app.running   選項打勾app

image

 

二 、代碼中的pom.xml  maven

1 . 配置項maven 依賴spring-boot

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional></dependency> //該配置必須

2 .  開啓熱啓動部署工具

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins></build>

 

熱啓動配置完畢,啓動項目,修改代碼,而後刷新就看到變化了! (由於編譯,可能要稍等幾秒纔有變化)ui

相關文章
相關標籤/搜索