jrebel + Eclipse + tomcat 实现热部署

最新版6.4.1破解版下载路径:http://download.csdn.net/download/cock333/9466408 

使用方法


总体的思路就是:下载官方的Eclipse插件  然后再指定javaagent等于破解版的jrebel.java路径

1:下载官方的Eclipse插件 在eclipse marketplace 里面下载 jrebel  我下载的是 6.几  忘了,直接下最近版的就Ok了  里面包含了三个基本的插件

2:破解版的jrebel.jar 网上自己搜索 很多 。解压后的目录为D:\jrebel

3:指定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 这样就不用设置代理了,后面的路径也不用配置了,因为直接用的是默认的。



4:在overview中 选择好服务器类型 勾选服务器

5:在server中选择好这两个   同时在tomcat的conf/server.xml 中将context的reloadable设为false。为true的时候 就是重启tomcat,这就会很不爽

 jrebel + Eclipse + tomcat 实现热部署_第1张图片

6:tomcat启动时 参数的传入中设置

tomcat 7的配置里叫做 Open launch configuration。!!!!

jrebel + Eclipse + tomcat 实现热部署_第2张图片

-Drebel.generate.show=true

-Drebel.spring_plugin=true

-Drebel.aspectj_plugin=true

-Drebel.cxf_plugin=true

-Drebel.logback_plugin=true

-Drebel.mybatis_plugin=true



7:将特定的project添加jrebel nature 

选中project 右击 选择jrebel  选择 add jrebel nature  就会生成一个文件rebel.xml 里面配置着 jrebel对当前project监控的路径 然后里面有${}包含的参数 这个是在jrebel config center 里面 查看到jrebel + Eclipse + tomcat 实现热部署_第3张图片

做完以上工作 我是可以了




你可能感兴趣的:(jrebel + Eclipse + tomcat 实现热部署)