springboot實現熱部署操作方法
阿新 • • 發佈:2020-11-06
1.在 Spring Boot 開發環境下禁用模板快取
#開發環境下關閉 thymeleaf 模板快取,thymeleaf 預設是開啟狀態 spring.thymeleaf.cache=false
2.引入依賴
<!--熱部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency>
3.Intellij IEDA 和 Eclipse 不同,Intellij IDEA 必須做一些小調整
(File -> Settings -> Build,Execution,Deployment -> Compiler -> 勾選 Build project automatically)
到此這篇關於springboot實現熱部署操作方法的文章就介紹到這了,更多相關springboot熱部署操作內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!