springboot热部署

Posted soft.push("zzq")

tags:

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

使用maven做项目管理时,在pom.xml中配置如下节点:

      <!--热部署插件-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>springloaded</artifactId>
            <version>1.2.6.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <version>1.3.0.RELEASE</version>
        </dependency>

这时自动部署已经设置完成,但是项目生成并不是自动的,需要ctrl+F9这样就没问题了!

具体如何省略(ctrl+F9)手动生成项目请移步:http://blog.csdn.net/wjc475869/article/details/52442484

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

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

在SpringBoot中使用热部署(DevTools)

idea内springboot项目设置热部署

SpringBoot入门篇--热部署

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

IDEA-SpringBoot项目设置热部署