下载地址: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

 
2015-03-21新增内容:mvn jrebel 下调试找不到源码
目前我的做法是使用Remote Debug方式,下面我来说如何配置:
1、新建Maven Build->JRE-VM agruments里填写以下内容,注意javaagent路径需要和本地路径一致,红色部分就是配置开启dwp远程配置。
-noverify
-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
2、Eclipse - Run - Debug Configurations - Remote Java Application - New - 选择project - 配置Configurations Properties 里面的 Host(本机调试:127.0.0.1) 和 Port(对应黄色字体8787)
3、配置好后,先运行mvn jetty:run 把web服务启动起来,然后,在选择刚才配置的debug remote启动,这样你在调试所有的jar包源码就可以跟踪进去了。
 
----------------------------------------------------------------------------------------------------
注意地方,如果是mvn项目,需要注意下面的配置
 
现在开始配置:
1、关注cha-baba微信公众号,发送“jrebel”即可收到下载地址,下载是百度云盘地址。
2、将下载的jrebel6.0.0-crack.zip解压,
jrebel6.0.0的jar包和破解文件假设文件解压在D:/jrebel步骤:
1.eclipse下载jrebe插件,可以去市场中下载      
2.打开eclipse的window-preference-jrebel,打开advance选项卡,把jar包的路径指向D:/jrebel/jrebel.jar     
3.用CMD打开DOS窗口,输入cd /d D:/jrebel/bin进入目录,输入activate.cmd D:/jrebel/jrebel.lic破解密钥      
4.如果eclipse没有tomca插件要先下载,然后在window-preference-tomcat-jvm setting中的append to jvm parameter新增5条配置:
-javaagent:D:/jrebel/jrebel.jar //jar在硬盘存放的路径
-noverify-Drebel.struts2_plugin=true 
//struts2-Drebel.aspectj_plugin=true //看自己需求要不要
-Drebel.spring_plugin=true //spring

======================================启动提示配置成功============================================

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

Rebel 6 破解版及使用方法的更多相关文章

  1. 缺陷管理工具JIRA破解版及其安装方法

    JIRA是一个优秀的问题(or bugs,task,improvement,new feature )跟踪及管理软件.    它由Atlassian开发,采用J2EE技术.它正被广泛的开源软件组织,以 ...

  2. PHPSTORM破解版激活方式方法

    方法一. 通过Licence Server 激活PHPStorm(快速) 方法原理是通过搭建服务器激活,不过网上有许多搭建好的. http://idea.goxz.gq http://v2mc.net ...

  3. JRebel 6 破解版及使用方法

    最近更新到jrebel6.2.1了,我自己做了个技术分享的微信公众号(茶爸爸),有心的朋友可以来这里一起学习 云盘下载链接: http://pan.baidu.com/s/1bnGzMUF 配置: - ...

  4. Sigmaplot 13 破解版什么地方可以下载

    SigmaPlot是一款专业的科学绘图软件,可用于绘制准确.高质量的图形和曲线,支持一百多种2D.3D科学图形,同时拥有强大的数据统计分析功能.现在网络不断发展,软件使用日益频繁,今天小编就和大家分享 ...

  5. IDEA 2020.2安装破解版教程激活码注册码破解补丁 for Mac Windows Linux-中关村老大爷

    IntelliJ Idea Ultimate 2020.2.x版软件最新安装破解版教程方法,本教程提供Idea Ultimate 2020.2版安装包,破解补丁,激活码,亲测100%完美破解激活,支持 ...

  6. phpstorm10.0.3破解版安装教程及汉化方法

    phpstorm是一个轻量级且便捷的PHP IDE,其旨在提供用户效率,可深刻理解用户的编码,提供智能代码补全,快速导航以及即时错误检查.不但是php开发的利器,前端开发也是毫不逊色的.下面记录php ...

  7. CLion 2016.1.1 下载 附注册激活码 破解版方法

    http://www.520xiazai.com/soft/CLion-2016.1.1.html CLion 2016.1.1 下载 附注册激活码 破解版方法 注册破解方法:在要求输入注册的界面选择 ...

  8. Photoshop Cs5 64位系统破解版下载(内含破解方法)

    Photoshop Cs5 64位系统是电影.视频和多媒体领域的专业人士, 使用 3D 和动画的图形和 Web 设计人员, 以及工程和科学领域的专业人士的理想选择,下面提供Photoshop Cs5  ...

  9. 破解版sublimeText3重新安装Package Control方法

    我们都知道破解版的sublime是不能安装插件的,甚至连他的控制台都调用不出来,我也不知道这是为什么,但是,后来上网搜了很久,才发现,原来重新安装Package Control之后就可以的了.注意:因 ...

随机推荐

  1. 转 蓝桥杯 历届试题 大臣的旅费 [ dfs 树的直径 ]

    题解: 求树的直径. 转一篇博客:http://www.cnblogs.com/hanyulcf/archive/2010/10/23/tree_radius.html 树的直径是指树的最长简单路.求 ...

  2. Android视图组成View

    视图组成View 创建时间: 2013-9-13 10:51 更新时间: 2013-9-13 11:04

  3. codeforces 301 E. Infinite Inversions

    题目:   time limit per test 2 seconds memory limit per test 256 megabytes input standard input output ...

  4. Wannafly模拟赛2 B river(拉格朗日乘数法)

    题目 https://www.nowcoder.com/acm/contest/4/B题意 有n条南北流向的河并列排着,水流速度是v,现在你需要从西岸游到东岸,总共T个时间,你的游泳速度是u,问东岸的 ...

  5. mysql 统计数据,按照日期分组,把没有数据的日期也展示出来

    因为业务需求,要统计每天的新增用户并且要用折线图的方式展示. 如果其中有一天没有新增用户的话,这一天就是空缺的,在绘制折线图的时候是不允许的,所有要求把没有数据的日期也要在图表显示. 查询2019-0 ...

  6. OO第三单元总结--根据JML写代码

    一. JML语言 1. 理论基础 首先,JML不是JAVA的一部分,它是一群研究者为JAVA设计的扩展部分,但还没有得到官方的支持.因此,JAVA编译器并不支持JML,所以要想JML起作用,只能采用类 ...

  7. Java中的重写

    以下内容引用自http://wiki.jikexueyuan.com/project/java/overriding.html: 如果一个类从它的父类继承了一个方法,如果这个方法没有被标记为final ...

  8. ASP.NET Core 奇淫技巧之动态WebApi

    一.前言 接触到动态WebApi(Dynamic Web API)这个词的已有几年,是从ABP框架里面接触到的,当时便对ABP的这个技术很好奇,后面分析了一波,也尝试过从ABP剥离一个出来作为独立组件 ...

  9. linux 解压zip文件

    linux 解压zip文件 学习了:https://blog.csdn.net/hbcui1984/article/details/1583796 unzip xx.zip

  10. CMMI 2,3,4,5级涉及的过程域(PA)介绍

      CMMI中的PA即Process Area的缩写,中文称为过程域.简单的说就是做好一个事情需要的某一个方面,对于软件开发来说,就是做好软件开发需要的某一个方面. CMMI2.3级共有18个过程域( ...