首頁 >Java >java教程 >Idea中Springboot熱部署無效怎麼解決

Idea中Springboot熱部署無效怎麼解決

王林
王林轉載
2023-05-18 18:01:062374瀏覽

一、開啟idea自動make功能

1 - Enable Automake from the compiler

PRESS: CTRL SHIFT A

TYPE: make project automatically

PRESS: Enter

Enable Make Project automatically feature

2 - Enable Automake when the application is running

PRESS: CTRL SHIFT A

TYPE: Registry

##Find the key compiler.automake.allow.when .app.running and enable it


Note: Restart your application now

兩步:

1、CTRL SHIFT A --> 尋找make project automatically --> 選取


#2、CTRL SHIFT A --> 尋找Registry --> 找到並勾選compiler.automake.allow.when. app.running

當然了,要在pom.xml中加入上spring開發工具包

<dependency>
      <groupid>org.springframework.boot</groupid>
      <artifactid>spring-boot-devtools</artifactid>
      <optional>true</optional> <!-- 这个需要为 true 热部署才有效 -->
      <scope>runtime</scope>
 </dependency>
在IDEA中開啟自動編譯:

Idea中Springboot熱部署無效怎麼解決

以上是Idea中Springboot熱部署無效怎麼解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除