springboot配置熱啟動
阿新 • • 發佈:2018-11-05
背景
pom.xml檔案的>spring-boot-maven-plugin外掛原來是這樣
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
問題
控制檯執行mvn spring-boot:run發現每次修改程式碼都要手動重啟才能看到最新效果,耗時耗力
解決
把節點內容改成這樣既可
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId >org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.8.RELEASE</version>
</dependency>
</dependencies>
</plugin>