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

SpringBoot工程热部署

时间:2019-07-20 15:50:58      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:配置   gis   frame   tool   http   artifact   选择   tom   height   

SpringBoot工程热部署

 

1、pom文件中添加热部署依赖

       <!-- 热部署配置 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
        </dependency>

技术图片

 

 

2、修改配置

添加依赖后再启动项目我们发现并不起作用。出现这种情况,并不是热部署配置问题,其根本原因是因为Intellij IDEA默认情况下不会自动编译,需要对IDEA进行自动编译的设置:

2.1 File---Settings

 技术图片

2.2 选择Compiler,勾选自动构建项目。然后点击ok,回到IDEA主界面。

 技术图片

2.3 然后SHIFT+CTRL+ALT+/,选择Register

 技术图片

2.4  勾选 compile.automake.allow.when.app.running。然后点击close退出

 技术图片

2.5 启动测试

修改完类我们不用重启idea了。

 技术图片

直接访问http://localhost:8080/hello

 技术图片

SpringBoot工程热部署

标签:配置   gis   frame   tool   http   artifact   选择   tom   height   

原文地址:https://www.cnblogs.com/yuanke-blog/p/11217891.html

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