您好,登錄后才能下訂單哦!
本篇內容介紹了“Spring Boot的熱部署是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
1、pom.xml文件增加
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
2、在pom.xml里增加插件
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> <!-- 如果沒有該配置,devtools不會生效 --> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin>
3、修改idea里的選項
打開idea ,File->Settings-> Build-Execution-Deployment -> Compiler,勾選 Build Project Automatically.
4、mac按shift+command+/
將看到彈窗 Enter Action or option name,輸入"registry",雙擊第一項"Registry..." ,會彈出另一個窗口,尋找< compiler.automake.allow.when.app.running> 選中,參考如圖:
5、項目 Update選擇Update Classes and resource
6、熱部署注意事項
(1)如果使用模板引擎,關閉緩存
在application.properties中添加
#禁止thymeleaf緩存(建議:開發環境設置為false,生成環境設置為true)
spring.thymeleaf.cache=false
(2)開啟熱部署后,session每次都會重置的
“Spring Boot的熱部署是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。