码迷,mamicode.com
首页 > 编程语言 > 详细

springboot之热部署

时间:2018-07-03 20:06:44      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:效率   app   make   artifact   pid   pen   16px   tomat   ram   

一、介绍spring为开发者提供了一个名为spring-boot-devtools的模块来使Spring Boot应用支持热部署,提高开发者的开发效率,无需手动重启Spring Boot应用。

二、配置:

pom.xml

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>
<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
    </configuration>
</plugin>

idea配置

1.选中 File->Settings->Compiler->Build project automatically

技术分享图片

2. 快捷键 ctrl + shift +a 输入registry,勾选 Compiler autoMake allow when app running

技术分享图片技术分享图片

 

springboot之热部署

标签:效率   app   make   artifact   pid   pen   16px   tomat   ram   

原文地址:https://www.cnblogs.com/nananana/p/9259872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!