springboot 热部署

Posted 冷枚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 热部署相关的知识,希望对你有一定的参考价值。

注意以下的热部署方式在IDEA是默认没有打开自动编译的,手动编译需要快捷键(Ctrl+Shift+F9),自动编译的修改配置如下:(注意刷新不要太快,会有1-2秒延迟)

File-Settings-Compiler-Build Project automatically 

设置以下两项(第一项如已设置直接设置第二项)

 

  1) “File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Build project automatically” 。

 

  2) 组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running” 。

 

 

引入 spring-boot-devtools

maven中引入

在pom中直接引入依赖

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
</dependency>

gradle中引入

dependencies {
    compile(\'org.springframework.boot:spring-boot-devtools\')
    }

搞定收工。

以上是关于springboot 热部署的主要内容,如果未能解决你的问题,请参考以下文章

利用 jrebel 热部署远程调试远程热部署 springboot项目 服务器上的代码

在SpringBoot中使用热部署(DevTools)

idea内springboot项目设置热部署

SpringBoot入门篇--热部署

SpringBoot------热部署(Springloaded)

IDEA-SpringBoot项目设置热部署