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

概述

1、pom文件引入坐标

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>

2、在pom文件增加下面配置

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork><!--必须添加这个配置-->
</configuration>
</plugin>
</plugins>
</build>

3、idea里面要设置
1、在IDEA中开启自动编译
在这里插入图片描述
2、Shift+Ctrl+Alt+/,选择Registry
选 compiler.automake.allow.when.app.running
重启项目就可以了

最后

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

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部