下载地址:http://www.zeroturnaround.com/jrebel/download/ 下载下来的是一个Zip压缩包,打开之后会发现一个jrebel.jar,这就是其最重要的运行包了。其他都是一些文档和插件。
PS. rebel出了免费社区版,参见:
http://zeroturnaround.com/blog/free-version-of-jrebel-social/
一、安装包准备
1. Jrebel.jar 核心JAR包,http://zeroturnaround.com/jrebel/prev-releases/ 上面进行下载。
安装 JRebel Eclipse插件进入 Help » Install New Software... 并且输入下面的URL :http://www.zeroturnaround.com/update-site/
2. update-site.zip jrebel Eclipse插件http://www.zeroturnaround.com/update-site/update-site.zip
开放链接:http://pan.baidu.com/s/1gd9xkEv
-javaagent:/Users/chababa/Desktop/dev/applications/jrebel/jrebel.jar
-Xbootclasspath/p:jrebel-bootstrap.jar;jrebel.jar
-Drebel.generate.show=true
-Drebel.spring_plugin=true
-Drebel.aspectj_plugin=true
-Drebel.cxf_plugin=true
-Drebel.logback_plugin=true
-Drebel.mybatis_plugin=true
-Xdebug -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n
======================================启动提示配置成功============================================
2015-03-08 20:26:18 JRebel:
2015-03-08 20:26:18 JRebel: #############################################################
2015-03-08 20:26:18 JRebel:
2015-03-08 20:26:18 JRebel: JRebel Legacy Agent 6.0.0 (201410311556)
2015-03-08 20:26:18 JRebel: (c) Copyright ZeroTurnaround AS, Estonia, Tartu.
2015-03-08 20:26:18 JRebel:
2015-03-08 20:26:18 JRebel: Over the last 30 days JRebel prevented
2015-03-08 20:26:18 JRebel: at least 3 redeploys/restarts saving you about 0.1 hours.
2015-03-08 20:26:18 JRebel:
2015-03-08 20:26:18 JRebel: Over the last 63 days JRebel prevented
2015-03-08 20:26:18 JRebel: at least 4 redeploys/restarts saving you about 0.2 hours.
2015-03-08 20:26:18 JRebel:
2015-03-08 20:26:18 JRebel: Licensed to anonymous-user
2015-03-08 20:26:18 JRebel: with the following restrictions:
2015-03-08 20:26:18 JRebel: ####### Cracked by anonymous-user, For FUN! Unlimited! Enjoy! ######
2015-03-08 20:26:18 JRebel:
2015-03-08 20:26:18 JRebel: License type: perpetual
2015-03-08 20:26:18 JRebel:
2015-03-08 20:26:18 JRebel:
2015-03-08 20:26:18 JRebel: #############################################################
2015-03-08 20:26:18 JRebel:
*****************************
更改Java文件后,jrebel编译并自动加载到jvm
##################################################################################
2015-03-08 20:26:54 JRebel: Reloading class 'org.demo.DemoController'.
2015-03-08 20:26:54 JRebel-spring: Reconfiguring bean 'demoController' [org.demo.DemoController]
2015-03-08 20:26:54,511 INFO [org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping] - Mapped "{[/test],methods=[],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public java.lang.String org.demo.DemoController.test()
2015-03-08 20:26:54,512 INFO [org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping] - Mapped "{[/test1],methods=[],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public java.lang.String org.demo.DemoController.test1()
上述参数的相关说明:
-agentpath: 这个是你使用的JRebel Agent版本的lib包的路径(路径后缀不要写成jrebel.jar),注意其中的斜线方向。
-Drebel.dirs :这个是你要监控的项目的 class 文件路径
-Drebel.disable_update: 设为true,就不会联网检查更新
-DJAVA_OPTS: 这个选项不是必须,当内存溢出的时候或其它特殊情况下才需要设置它的参数大小。
http://www.cnblogs.com/xiaoheike/p/5296153.html
http://www.cnblogs.com/xiaoheike/p/5296153.html
http://hw1287789687.iteye.com/blog/2193757