IDEA+gradle+SpringBoot实现热部署

所谓热部署就是修改文件后不需要重新启动服务器即可实现浏览效果。

添加gradle依赖

build.gradle中的dependencies节点里添加如下行:

implementation 'org.springframework.boot:spring-boot-devtools'

添加后应该是这样:

dependencies {
    implementation 'org.springframework.boot:spring-boot-devtools'
}

然后点击Gradle页面的刷新按钮

image

启动热部署

打开IDEA,按住Ctrl+Shift+A,输入registry

image

弹出一个框,选择第一个Registry...

image

然后往下翻,找到compiler.automake.allow.when.app.running,打上勾。

最后来到设置页面:

image

依次进入Build, Execution, Deployment,Compiler

Build project automatically打上勾即可完成热部署。

posted @ 2022-04-07 11:36  垆边画船听雨眠  阅读(372)  评论(0编辑  收藏  举报