我是靠谱客的博主 文艺水池,最近开发中收集的这篇文章主要介绍boot开启热部署,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#springboot开启热部署
. 在pom.xml中添加依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
 . 在<plugins>中添加<plugin>
 <plugin>
<!--热部署配置-->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--fork:如果没有该项配置,整个devtools不会起作用-->
<fork>true</fork>
</configuration>
</plugin>
.
在idea中设置
* file->setting->compile->Build project automatically
* ctrl+shift+alt+/ 在compile.automake.allow.when.app.running 勾选

最后

以上就是文艺水池为你收集整理的boot开启热部署的全部内容,希望文章能够帮你解决boot开启热部署所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部