SpringBoot+Idea热部署
Posted 羊37
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot+Idea热部署相关的知识,希望对你有一定的参考价值。
idea版本
IntelliJ IDEA 2019.2.3 (Ultimate Edition)
1.pom文件加依赖
<!--热部署-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
2.Ctrl+Alt+S设置 修改Compiler项
3.Ctrl+Shift+Alt+/ 选择Registry
4.勾选后close
5.重启或者重新打开项目
JRebel插件更方便,这是旧电脑,有空更新.
以上是关于SpringBoot+Idea热部署的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot项目在IntelliJ IDEA中实现热部署
SpringBoot-03:SpringBoot+Idea热部署