Springboot熱部署設定
spring為開發者提供了一個名為spring-boot-devtools的模組來使Spring Boot應用支援熱部署,提高開發者的開發效率,無需手動重啟Spring Boot應用。
devtools的原理
深層原理是使用了兩個ClassLoader,一個Classloader載入那些不會改變的類(第三方Jar包),另一個ClassLoader載入會更改的類,稱為restart ClassLoader,這樣在有程式碼更改的時候,原來的restart ClassLoader 被丟棄,重新建立一個restart ClassLoader,由於需要載入的類相比較少,所以實現了較快的重啟時間。
使用需要新增以下的配置:
1234567891011121314151617181920212223242526272829 | < dependencies > < dependency > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-devtools</ artifactId > < optional >true</ optional > </ dependency > < dependency > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-starter-web</ artifactId > </ dependency > < dependency > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-starter-test</ artifactId > < scope >test</ scope > </ dependency > </ dependencies > < build > < plugins > < plugin > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-maven-plugin</ artifactId > < configuration > < fork >true</ fork > </ configuration > </ plugin > </ plugins > </ build > |
說明:
(1) devtools可以實現頁面熱部署(即頁面修改後會立即生效,這個可以直接在application.properties檔案中配置spring.thymeleaf.cache=false來實現),實現類檔案熱部署(類檔案修改後不會立即生效),實現對屬性檔案的熱部署。 即devtools會監聽classpath下的檔案變動,並且會立即重啟應用(發生在儲存時機),注意:因為其採用的虛擬機器機制,該項重啟是很快的
(2)配置了後在修改java檔案後也就支援了熱啟動,不過這種方式是屬於專案重啟(速度比較快的專案重啟),會清空session中的值,也就是如果有使用者登陸的話,專案重啟後需要重新登陸。預設情況下,/META-INF/maven,/META-INF/resources,/resources,/static,/templates,/public這些資料夾下的檔案修改不會使應用重啟,但是會重新載入(devtools內嵌了一個LiveReload server,當資源發生改變時,瀏覽器重新整理)。
devtools的配置
在application.properties中配置spring.devtools.restart.enabled=false,此時restart類載入器還會初始化,但不會監視檔案更新。
在SprintApplication.run之前呼叫System.setProperty(“spring.devtools.restart.enabled”, “false”);可以完全關閉重啟支援,配置內容:
123456 | #熱部署生效 spring.devtools.restart.enabled: true #設定重啟的目錄 #spring.devtools.restart.additional-paths: src/main/java #classpath目錄下的WEB-INF資料夾內容修改不重啟 spring.devtools.restart.exclude: WEB-INF/** |
IDEA配置
當我們修改了Java類後,IDEA預設是不自動編譯的,而spring-boot-devtools又是監測classpath下的檔案發生變化才會重啟應用,所以需要設定IDEA的自動編譯:
(1)File-Settings-Compiler-Build Project automatically
(2)ctrl + shift + alt + /,選擇Registry,勾上 Compiler autoMake allow when app running
測試
- 修改類–>儲存:應用會重啟
- 修改配置檔案–>儲存:應用會重啟
- 修改頁面–>儲存:應用不會重啟,但會重新載入,頁面會重新整理(原理是將spring.thymeleaf.cache設為false,參考:Spring Boot配置模板引擎)