相信很多人自己百度“idea springboot 熱部署”
,找到的解決方案都是如下:
1.項(xiàng)目加入依賴spring-boot-devtools
2.IDEA按ctrl+alt+s
——Build,Excution,Deployment
——Compiler
——勾選Build project automatically
3.IDEA按ctrl+shift+a
——輸入registry
——Compiler
——勾選compiler.automake.allow.when.app.running
但其實(shí)這樣設(shè)置,每次你改一點(diǎn)點(diǎn)代碼,都會(huì)觸發(fā)IDEA重新編譯,IDEA變得很卡,開(kāi)發(fā)體驗(yàn)不好。
其實(shí)IDEA提供了對(duì)spring-boot-devtools
的相應(yīng)支持的,打開(kāi)IDEA——Help
在彈出網(wǎng)頁(yè)中輸入spring boot
,就能找到Configure application update policies with devtools這篇文檔。
實(shí)際操作:
1.在你的spring boot項(xiàng)目中引入依賴spring-boot-devtools
2.找到main方法,運(yùn)行一下項(xiàng)目。注意一定要通過(guò)點(diǎn)擊main方法運(yùn)行
,而不能是通過(guò)mvn spring-boot:run
或gradle bootRun
,如下圖:
3.運(yùn)行后我們就可以打開(kāi)Run
——Edit Configurations
,在SpringBoot
下設(shè)置On Update action
為Update classes and resources
,如下圖:
4.設(shè)置后,通過(guò)main方法運(yùn)行,或者在菜單欄點(diǎn)擊Run圖標(biāo)運(yùn)行,如圖:
5.當(dāng)我們修改完代碼后,IDEA不會(huì)自動(dòng)編譯重新啟動(dòng)SpringBoot,而是我們需要按一下左下角的Run
欄目中的Update xxx application
才會(huì)觸發(fā)熱切換。當(dāng)然我們也可以用快捷鍵ctrl+F10
。如下圖:
網(wǎng)頁(yè)題目:IntellijIDEA下SpringBoot熱切換配置-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://weahome.cn/article/cehcoi.html