1. 程式人生 > 程式設計 >Idea中Springboot熱部署無效問題解決

Idea中Springboot熱部署無效問題解決

這篇文章主要介紹了Idea中Springboot熱部署無效問題解決,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

僅適用IDEA中,eclipse中不需要設定

一、開啟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中開啟自動編譯:

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。