您好,登錄后才能下訂單哦!
Idea中怎么配置熱部署,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
一、pom.xml修改
1.添加spring-boot-devtools組件,此依賴組件包含熱部署功能
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
2.在plugin中配置屬性 fork
<!-- 構(gòu)建配置,使?Maven構(gòu)建Spring Boot項(xiàng)?必須依賴于 spring-boot-maven-plugin 組件 --> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.4.0</version> <!-- 熱部署添加配置 --> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build>
二、選擇File | Settings | Compiler命令,然后勾選【Build project automatically】復(fù)選框
三、Ctrl+Shift+Alt+/ 選擇Registry,找到選項(xiàng)【Compiler autoMake allow when app running】并勾選
四、 設(shè)置項(xiàng)目啟動(dòng)加載方式,選擇 Run | Edit Configurations
看完上述內(nèi)容,你們掌握Idea中怎么配置熱部署的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。