IDEA配置JRebel实现热部署

1.下载JRebel and XRebel for Intellij插件

IDEA配置热部署插件JRebel实现springboot项目热部署_jar

开始配置自动编译

IDEA配置热部署插件JRebel实现springboot项目热部署_jar包_02

3.勾选Build project automatically

ctrl + shift + alt + / ,选择Registry,勾上 Compiler autoMake allow when app running

IDEA配置热部署插件JRebel实现springboot项目热部署_jar包_03

4.Edit Configurations

IDEA配置热部署插件JRebel实现springboot项目热部署_jar包_04

on update action和 on frame deactivation改成 update classes and resources

IDEA配置热部署插件JRebel实现springboot项目热部署_jar_05

5.打开JRebel tool

IDEA配置热部署插件JRebel实现springboot项目热部署_解压缩_06

6.勾选你要热部署的应用

IDEA配置热部署插件JRebel实现springboot项目热部署_解压缩_07

查看JRebel日志

IDEA配置热部署插件JRebel实现springboot项目热部署_解压缩_08

设置JRebel日志存放位置

在环境变量中加上REBEL_BASE 变量值为目录

IDEA配置热部署插件JRebel实现springboot项目热部署_jar包_09

使用JRebel启动springboot项目

IDEA配置热部署插件JRebel实现springboot项目热部署_jar包_10

查看控制台日志

IDEA配置热部署插件JRebel实现springboot项目热部署_jar包_11

常见错误

jrebel.jar不兼容

IDEA配置热部署插件JRebel实现springboot项目热部署_jar包_12


JRebel-JVMTI [ERROR] You’re using an incompatible ‘jrebel.jar’ with the JRebel Agent.

JRebel-JVMTI [FATAL] Please make sure that’C:\Users\XXX\AppData\Roaming\JetBrains\IntelliJIdea2020.2\plugins\jr-ide-idea\lib\jrebel6\jrebel.jar’ is a copy of lib JRebel ZIP release \Jrebel.jar.这可能是因为你的IDEA可能不是最新版本,但jrebel的jar包为最新版导致的,

下载jar包 下载你指定IDEA版本的JRebel压缩包。然后解压缩压缩包以找到jrebel.jar,并将jrebel使用的jar包的路径更改为解压缩后的jrebel.jar的文件路径。

IDEA配置热部署插件JRebel实现springboot项目热部署_jar_13


再次使用JRebel启动SpringBoot项目并成功启动。如果修改代码,将鼠标点向IDEA窗口以外的区域会自动build(或者手动按ctrl+shfit+F9)

IDEA配置热部署插件JRebel实现springboot项目热部署_jar包_14


IDEA配置热部署插件JRebel实现springboot项目热部署_解压缩_15