IDEA热部署
- 下载热部署插件
- 配置IDEA
-
激活插件
通过偏好设置找到JRebel & XRebel然后选择激活插件,打开jrebel激活面板,选择Team URL(connect to online licensing service), 任意输入邮箱, 地址激活.
地址激活码:
https://jrebel.qekang.com/b269986f-ec9f-4839-8467-25419592f1ef
或者是http://139.199.89.239:1008/88414687-3b91-4286-89ba-2dc813b107ce -
在需要热部署的项目中引入相关jar包
```xml
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<!-- 表示依赖不会传递,之后依赖该module的项目如需继续使用,则需要再次引入 -->
</dependency>