Springboot教程之如何設定springboot熱重啟
阿新 • • 發佈:2020-07-10
SpringBoot熱重啟步驟
1.開啟點選pom.xml配置檔案
2.找到配置檔案節點
3.在節點中插入以下程式碼
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency>
4.點選編輯器選單欄view ->Tool Windows->Maven Projects 中檢視是否新增成功,沒有自己建立建立專案並勾選上這個功能
6.編輯器中 ctrl +shift +a 搜尋 Registry
找到以下內容並在右邊打鉤
compiler.automake.allow.when.app.running √
然後點選右下角close
重新執行下專案
總結
到此這篇關於Springboot教程之如何設定springboot熱重啟的文章就介紹到這了,更多相關設定springboot熱重啟內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!