在專案開發過程中,每次需要修改和偵錯時都需要重新啟動項目,這浪費了很多時間。以下是我整理的兩種常用方法
修改啟動設定方式(主要針對debug模式下)
點擊啟動設定= 》edit configrations…
configration下面修改Updateclasses and resources
on ‘update‘ action:當使用者主動執行更新的時候更新快速鍵:Ctrl F9
on frame deactication:在編輯視窗失去焦點的時候更新
說明
當開發者將spring-boot-devtools 引入專案後,只要classpath 路徑下發生變化,專案就會自動重啟,這極大提高了專案的開發速度。如果開發者使用 Eclipse ,那麼在修改完程式碼並儲存之後,專案將自動編譯井觸發重啟,而開發者如果使用 IntelliJ IDEA 預設情況下,需要開發者手動編譯才會觸發重啟。手動編譯時,按一下 Build -> Build Project 選單或按 Ctrl F9 快速鍵進行編譯,編譯成功後就會觸發專案重新啟動。當然,使用IntelliJ IDEA 開發者也可以設定專案自動編譯,設定步驟:
File=》Settings=》Build,Execution,Deployment=》 Compiler= 》勾選Build project automeatically
Ctrl shifter alt / =》Registry=》勾選compiler.automake.allow.parallel
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
#热部署默认会重启 spring.devtools.restart.enabled=true #添加那个目录的文件需要restart spring.devtools.restart.additional-paths=src/main/java #排除那个目录的文件不需要restart spring.devtools.restart.exclude=static/**,public/**
以上是Idea springboot springCloud熱載入熱調試的常用方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!