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

在SpringBoot中使用热部署(DevTools)

时间:2018-09-12 17:01:34      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:release   cti   try   内容   ase   artifact   启动   开发   nbsp   

一、简介

  有时候我们开发完SpringBoot项目后,启动运行。但是经常发现代码需要反复修改,然后修改部分内容后需要再启动....这样太费时了,热部署就是用来解决这一问题。让你修改完代码后,能自动执行编译并运行。

 

二、工具

  IntelliJ IDEA、SpringBoot 2.0.4

三、步骤

  1、创建正常SpringBoot的Maven项目

  2、在需要热部署的项目中(或者在全局父Maven模块中)加入DevTools

  

    <dependencies>
        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <version>2.0.4.RELEASE</version>
        </dependency>

    </dependencies>

  技术分享图片

  3、依次点开菜单 【File】-【Settings】-【Build,Execution,Deployment】-【Compiler】-勾选右侧的【Build project automatically】

  技术分享图片

  4、按下Ctrl+Shift+A,打开搜索,输入registry,并打开搜索到的该项设置。

  技术分享图片

  5、找到compiler.automake.allow.when.app.running项,并打勾。

  技术分享图片

  6、最重要的一步:重启IEDA。

 

 

  

在SpringBoot中使用热部署(DevTools)

标签:release   cti   try   内容   ase   artifact   启动   开发   nbsp   

原文地址:https://www.cnblogs.com/songxingzhu/p/9635264.html

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