我们用eclipse开发时经常遇到一个麻烦的问题是修改类文件后需重启tomcat才能生效,即使使用一些tomcat插件,有时修改了方法名或添加了类,也需要重启。使用获得jolt大奖的作品jrebel,就能轻松实现 jvm热部署,Rebel 可快速实现Tomcat的热部署,最为强大的是支持Spring注解的热部署,这样就能节省大量的服务器重启时间,提高了个人开发效率。JRebel支持Eclipse和IntelliJ IDEA,下面分别从两个IDE介绍JRebel的安装方法,如有错误或遗漏,欢迎指出。PS: 改properties\xml无效,这是要手动重启的。
安装方法
1.Eclipse安装JRebel
- JRebel官网地址:https://manuals.zeroturnaround.com/jrebel/index.html
- Eclipse插件在线安装地址:http://update.zeroturnaround.com/update-site/
- 添加插件在线安装地址到Eclipse,然后选择安装 JRebel for Java EE,重启之后设置里会出现 Jrebel的选项,说明安装成功。
破解:Crack:
- 使用授权服务器:Help > JRebel Activation > I already have a license > Connect to License Server
- Group URL 填写:http://idea.lanyus.com/{username} (用任意用户名替换 {username}),Email 随意。
- 手动:打开Eclipse目录:plugins/org.zeroturnaround.eclipse.embedder_*
分别替换 jrebel,jr6/jrebel 文件夹里的jar文件为破解后的jar文件,将证书放到用户文件夹的 .jrebel 文件夹下,例如 ~/.jrebel/。
回到Eclipse,选择Help -> JRebel Configuration 打开jrebel的配置中心,到Advance里设置JRebel agent为JRebel 6 Agent。
如果Jrebel提示没激活,请手动选择一下注册证书的路径。
设置好之后,在已有项目上右键 -> Jrebel -> Add Jrebel Nature,然后源码目录就会生成一个 rebel.xml 文件,设置成功。
2.IntelliJ IDEA安装JRebel插件:
以下步骤基于IntelliJ IDEA 16,其他版本大同小异。
- File -> Settings -> Plugins -> Browse repositories…查找 JRebel for Intellij 并安装。
破解:Crack:
- 使用第三方授权服务器:
- 还是那句话,如果JRebel给你节约了大量时间,而你又的确喜欢这款软件,请买正版支持一下。
- 手动:
打开插件目录:C:/Users/<当前用户>/.IntelliJIdea16/config/plugins/jr-ide-idea/lib,或者 ~/.IntelliJIdea16/config/plugins/jr-ide-idea/lib。
分别替换 jrebel 和 jrebel6 里边的jar文件为破解后的jar文件,并将注册证书放到 C:/Users/<当前用户>/.jrebel/ 文件夹下,或者 ~/.jrebel/。
回到IntelliJ IDEA:File -> Settings -> JRebel,确认一下注册状态,然后到 Advanced 选择JRebel 6 Agent。
- 使用方法:在当前项目上右键 -> JRebel -> rebel.xml 来生成 rebel.xml 文件,或者在IntelliJ左下角,选择JRebel选项卡,将第一个勾上即可。(不做这步也可以)
- Run -> Edit Configurations…,设置On ‘Update action’ 和 On firame deactivation。
PS:官方文档里边给出的是分别设置为“Restart server”和“Do nothing”,但是需要手动编译才能自动部署。我推荐设置为如下图,当IDEA失去焦点的时候会自动编译并重新部署,更方便。
- IntelliJ安装JRebel官方教程:http://manuals.zeroturnaround.com/jrebel/ide/intellij.html
配置讲解
1.使用方法
- 总体的思路就是:下载官方的Eclipse插件 然后再指定javaagent等于破解版的jrebel.java路径
- 下载官方的Eclipse插件 在eclipse marketplace 里面下载 jrebel 我下载的是 6.几 忘了,直接下最近版的就Ok了 里面包含了三个基本的插件
- 破解版的jrebel.jar 网上自己搜索 很多 。解压后的目录为D:\jrebel
- 指定javaagent的值 看图 在就rebel config center 里面 在overview plug-ins advanced 一栏中 点击advanced 就会看到jrebel agent 选择other jrebel.jar 选择破解版jrebel.jar的位置
- 这一步还有另外一种更方便的思路,直接替换eclipse的plugins目录下,org.zeroturnaround.eclipse.embedder_6.4.1.RELEASE 这个目录下的所有jrebel.jar 这样就不用设置代理了,后面的路径也不用配置了,因为直接用的是默认的。
- 在overview中 选择好服务器类型 勾选服务器
- 在server中可以选择这两个选项,同时在tomcat的conf/server.xml 中将context的reloadable设为false。为true的时候 就是重启tomcat,这就会很不爽。
这里标注一下,以前我在网上看到别人都是说要把这个never publish sutomatically选择的,可是在我本机选择不自动发布后修改jsp页就不能重新加载了,选上Automatically
publish when resources change后jsp就可以和以前一样热加载了
- tomcat启动时 参数的传入中设置tomcat 7的配置里叫做 Open launch configuration。!!!!
- 也可以这样配置
1
2
3
4
5
6
7
8
9
10
11${jrebel_args}
-Drebel.generate.show=true
-Drebel.spring_plugin=true
-Drebel.aspectj_plugin=true
-Drebel.cxf_plugin=true
-Drebel.logback_plugin=true
-Drebel.mybatis_plugin=true
-javaagent:D:\Software\jrebel6\jrebel.jar
-noverify -XX:PermSize=128M -XX:MaxPermSize=512M
-Drebel.log=d\:\\jrebel\\jrebel.log
-Xms512m -Xmx1024m
1 | -noverify |
- 将特定的project添加jrebel nature选中project 右击 选择jrebel 选择
add jrebel nature
就会生成一个文件rebel.xml 里面配置着 jrebel对当前project监控的路径 然后里面有${}包含的参数 这个是在jrebel config center 里面 查看
2.注意
- tomcat需配置自动加载资源, 最好以debug方式启动
- 当一个项目使用maven多模块开发时通过上面的配置, 只能自动加载webapp所在的模块, 若想改动其他模块的代码也要自动加载, 需在项目的跟pom中加入下面的配置:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19<plugin>
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<version>1.1.5</version>
<configuration>
<addResourcesDirToRebelXml>true</addResourcesDirToRebelXml>
<alwaysGenerate>true</alwaysGenerate>
<showGenerated>true</showGenerated>
</configuration>
<executions>
<execution>
<id>generate-rebel-xml</id>
<phase>process-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
3.JRebel使用说明
- 项目下的src/rebel.xml文件配置的是JRebel的监控路径,如果使用不正常,请确认一下这个文件里边配置的路径是否正确。
启动项目,如果提示类似以下信息,说明JRebel运行正常:
1 | 2016-08-29 15:05:09 JRebel: ############################################################# |
在Maven下使用
1 | <plugins> |
Maven插件
1 | <plugin> |
下载地址
- JRebel免安装版本下载地址,不是IDE插件,可直接挂载到Tomcat:
<https://zeroturnaround.com/software/jrebel/download/thank-you/?file=jrebel-6.4.8-nosetup.zip>
- 链接:http://pan.baidu.com/s/1qWOnH7I 密码:ynyq
- 来源 :http://download.csdn.net/user/cock333
- 6.4.3 以上暂无,请使用激活服务器。
- Jrebel从6.5.1版开始封了idea.lanyus.com,目前还可以用idea.qinxi1992.cn激活,现在Jrebel限制切换离线最多只能离线半年。
JRebel6.4.3版本
- 下载地址:http://update.zeroturnaround.com/update-site-archive/update-site-6.4.3.RELEASE/
- 破解安装参考:http://blog.csdn.net/paincupid/article/details/52226014
- 破解安装参考:http://www.cr173.com/soft/191113.html
资料
- 扩软博客:https://blog.kuoruan.com/62.html
- IDEA下安装JRebel热部署:http://www.cnblogs.com/winner-0715/p/5263422.html
- JRebel使用:http://truemylife.iteye.com/blog/1140921
- 安装eclipse的JRebel6.4.3的插件:http://blog.csdn.net/paincupid/article/details/52226014
- ebel使用:http://she.iteye.com/blog/1493669
- 错误解决:http://blog.163.com/olfzpp@126/blog/static/19766968201031252128351/
- jrebel eclipse/tomcat:http://www.xuebuyuan.com/2169652.html