jrebel 安装与使用

标签: jrebel | 发表时间:2014-04-18 17:10 | 作者:chembo
出处:http://www.iteye.com
此文权属个人研究学习之用。资源皆来自网络。
1.安装插件:
eclipse marketplace 搜索 jrebel
或help-> install new software, update site: http://www.zeroturnaround.com/update-site/

2.安装完后,提示invalid license. 关闭eclipse, 下载这个文件,
http://pan.baidu.com/share/link?shareid=1494205938&uk=537696768解压覆盖至eclipse/plugins/org.zeroturnaround.eclipse.embedder_5.5.2.RELEASE-201403191032 下。

3.重启eclipse. license已经生效了。

4.在所需要项目中使用jrebel, 以下以maven项目作介绍:
pom.xml plugins添加:
plugin>
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-rebel-xml</id>
<phase>process-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>  
        <rebelXmlDirectory>${basedir}/src/main/webapp/WEB-INF/classes</rebelXmlDirectory>  
    </configuration>  
</plugin>


添加jvm启动参数:
${jrebel_args}
-noverify -XX:PermSize=128M -XX:MaxPermSize=512M
-Drebel.log=d\:\\jrebel\\jrebel.log
-Xms512m -Xmx1024m
-Drebel.spring_plugin=true


PS: 改properties\xml无效,这是要手动重启的。



已有 0 人发表留言,猛击->> 这里<<-参与讨论


ITeye推荐



相关 [jrebel] 推荐:

jrebel运用

- - 开源软件 - ITeye博客
            什么是JRebel.              JRebel安装一个javaagent监控系统中的classes和resources文件在工作空间的变化,然后在运行的应用服务器上热加载这些变化,支持下面的这些类型的文件改变:. 改变Java classes文件..           JRebel 是.

(转)jrebel使用

- - 编程语言 - ITeye博客
背景与愿景:开发环境下,tomcat对热布署的支持还不够全面,致使开发人员浪费大量时间在重起服务上. 为了提高开发效率,决定引入Jrebel,它对热布署的支持相对比较全面. 虽然Jrebel官方号称使用它不存在内存泄漏问题,但是占用一定的资源是肯定的,因此不考虑在正式环境下使用热布署. Jrebel实际上支持非常多中间件,除了Tomcat还包括Jetty、Resin、Weblogic等等,从理论上来讲,他跟中间件也没什么关系,但实际配置的时候还是会根据中间件有所不同,具体可以上官网查看,本文要讲的是tomcat+ eclipse+ spring+ struts2+ maven的环境.

jrebel 安装与使用

- - 开源软件 - ITeye博客
eclipse marketplace 搜索 jrebel. 或help-> install new software, update site: http://www.zeroturnaround.com/update-site/. 2.安装完后,提示invalid license. 关闭eclipse, 下载这个文件,.