SpringBoot熱重啟配置詳解

2022-09-29 22:54:20 字數 926 閱讀 7501

1.新增依賴

org.springframework.boot

sprinwww.cppcns.comg-boot-devtools

true 不能被其它模組繼承,如果多個子模組可以去掉 不必須

runtime 只在執行時起作用 打包時不打進去

安裝成功後檢視m**en 依賴 如果存在spring-boot-devtools 並且沒有紅線證明成功新增

2.要重新編譯專案

重啟伺服器

idea:

設定file ->setting ->compile: 勾選「build project automatically」選項

知識點補充:

springboot熱啟動

在pom檔案中新增m**en依賴

org.springframework.boot

spring-boot-devtools

true

true程式設計客棧gt;

在 < build> 下面 < plugins> 裡的新增如下**

org.springframework.boot

spring-boot-m**en-plugin

true

www.cppcns.comlugins>

file --> setting --> complier -->勾選build project automatically

快捷鍵 ctrl + shift + alt + /,選擇registry,勾上 compiler automake allow when app running (編譯器自動允許當應用程式執行)

此時大功告成,修改**後,不用重啟程式訪問的也是修改後的內容,若沒效果,可稍等片刻。

本文標題: springboot熱重啟配置詳解

本文位址: /ruanjian/j**a/300451.html

Spring Boot熱部署配置

熱部署是什麼 大家都知道在專案開發過程中,常常會改動頁面資料或者修改資料結構,為了顯示改動效果,往往需要重啟應用檢視改變效果,其實就是重新編譯生成了新的 class 檔案,這個檔案裡記錄著和 等對應的各種資訊,然後 class 檔案將被虛擬機器的 classloader 載入。而熱部署正是利用了這個...

idea配置springboot熱部署

springboot專案的頁面一調整就看不了效果怎麼辦?別怕,可以這麼做!idea來配置springboot熱部署 1.首先要在專案的pom檔案新增以下依賴 org.springframework.boot spring boot devtools true 2.接下來更改idea的設定 進入到id...

springboot關於配置熱部署

1.在 spring boot 開發環境下禁用模板快取 開發環境下關閉 thymeleaf 模板快取,thymeleaf 預設是開啟狀態 spring.thymeleaf.cache false 2.引入熱部署依賴 org.springframework.boot spring boot devto...