您好,登錄后才能下訂單哦!
springboot熱部署如何在Intellij IDEA中實現?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
對于springboot熱部署貌似是這樣的,首先要設置idea相關配置
導航欄 File -> Settings -> Build,Execution,Deployment -> Compiler 選擇Build project automatically 打勾 如下圖所示
接著Ctrl+Shift+Alt+/ 快捷鍵選擇Registry會彈出如下圖
在紅色選擇的一行打勾,就完成了這步驟。
接著開始配置pom.xml文件
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <!-- springboot maven plugin --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <!--fork : 如果沒有該項配置,肯定devtools不會起作用,即應用不會restart --> <fork>true</fork> </configuration> </plugin> </plugins> </build>
pom文件也配置好了,就開始配置application.yml (或者 application.properties)
#THYMELEAF spring: thymeleaf: cache: false #這里一定要設置false prefix: classpath:/thymeleaf/ suffix: .html mode: HTML5 encoding: UTF-8 devtools: restart: #熱部署生效true enabled: true #設置重啟的目錄 additional-paths: resources/**,static/**,templates/** #該目錄下的內容修改不重啟 exclude: data/**
配置完之后,基本上就可以運行了,還有最后要記得瀏覽器要設置 禁止緩存
看完上述內容,你們掌握springboot熱部署如何在Intellij IDEA中實現的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。