JRebel + Tomcat 配置

此下使用jrebel方式为不使用eclipse plugins方式,是直接用jvm vm arguments参数形式进行配置。

1. 下载 JRebel.jar、jrebel.lic(官网试用)

2. Tomcat配置

1)打开tomcat配置信息,设置Publishing —— Never publish antomatically
JRebel + Tomcat 配置_第1张图片

2)打开Open launch configuration,
添加如下信息:
-noverify -javaagent:D:\Develop\jrebel-5.4.2\jrebel.jar 
-Drebel.dirs=D:\Develop\workspace\Provider\build\classes,D:\Develop\workspace\Provider\WebContent 
-Drebel.spring_data_plugin=true


JRebel + Tomcat 配置_第2张图片

注意:需要的是build/classes,而不是web-inf/classes

Tomcat Modules(Tomcat配置信息的另一个选项卡)
JRebel + Tomcat 配置_第3张图片

3. eclipse设置 Project —— build automatically

4. 配置成功后出现:
2013-12-24 15:26:31 JRebel: 
2013-12-24 15:26:31 JRebel: #############################################################
2013-12-24 15:26:31 JRebel: 
2013-12-24 15:26:31 JRebel:  JRebel 5.4.2 (201311271505)
2013-12-24 15:26:31 JRebel:  (c) Copyright ZeroTurnaround OU, Estonia, Tartu.
2013-12-24 15:26:31 JRebel: 
2013-12-24 15:26:31 JRebel:  Over the last 1 days JRebel prevented 
2013-12-24 15:26:31 JRebel:  at least 0 redeploys/restarts saving you about 0 hours.
2013-12-24 15:26:31 JRebel: 
2013-12-24 15:26:31 JRebel:  This product is licensed to www.sdandroid.com
2013-12-24 15:26:31 JRebel:  for unlimited number of developer seats on site.
2013-12-24 15:26:31 JRebel:   ####### Cracked by sdandroid ([email protected]) ######
2013-12-24 15:26:31 JRebel: 
2013-12-24 15:26:31 JRebel:  The following plugins are disabled at the moment: 
2013-12-24 15:26:31 JRebel:  * Axis2 plugin (set -Drebel.axis2_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Camel plugin (set -Drebel.camel_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Click plugin (set -Drebel.click_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Deltaspike plugin (set -Drebel.deltaspike_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Eclipse RCP Plugin (set -Drebel.eclipse_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * JBoss7 EJB Plugin (set -Drebel.jboss7_ejb_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * JRuby Plugin (set -Drebel.jruby_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Jersey plugin (set -Drebel.jersey_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Log4j2 plugin (set -Drebel.log4j2_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Mustache Plugin (set -Drebel.mustache_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * RESTlet plugin (set -Drebel.restlet_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Seam-Wicket plugin (set -Drebel.seam_wicket_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Spring Data Plugin (set -Drebel.spring_data_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Thymeleaf Plugin (set -Drebel.thymeleaf_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * VRaptor plugin (set -Drebel.vraptor_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * Vaadin CDI utils plugin (set -Drebel.vaadin_cdiutils_plugin=true to enable)
2013-12-24 15:26:31 JRebel:  * WebObjects plugin (set -Drebel.webobjects_plugin=true to enable)
2013-12-24 15:26:31 JRebel: 
2013-12-24 15:26:31 JRebel: #############################################################
2013-12-24 15:26:31 JRebel: 
2013-12-24 15:26:31 JRebel: 

2013-12-24 15:26:31 JRebel: JRebel: Directory 'D:\Develop\workspace\Provider\build\classes' will be monitored for class changes.
2013-12-24 15:26:31 JRebel: JRebel: Directory 'D:\Develop\workspace\Provider\WebContent' will be monitored for class changes.
2013-12-24 15:26:31 JRebel: 


5. jrebel monitor 侦听classes成功后,修改文件会出现:
2013-12-24 15:28:35 JRebel: Reloading class 'com.alibaba.dubbo.demo.provider.DemoServiceImpl'.
2013-12-24 15:28:35 JRebel: Reconfiguring bean 'demoService' [com.alibaba.dubbo.demo.provider.DemoServiceImpl]

你可能感兴趣的:(eclipse,plugins)