JRebel is an alternative solution to updating classes which does not require a debugging session to be started. Instead it monitors the file system for changes and updates the classes in-memory. This means that only classes compiled to ".class" files will be updated and changes to classes in JAR ...
38
votes
12answers
8k views
Open source alternative to JavaRebel?
Is there an open source (and ideally free software) alternative to ZeroTurnaround's class reloading tool JRebel?
6
votes
3answers
234 views
Redeploying Java EE applications immediately
I am quite new to Java EE and have been struggling with the slowness of the deployment process, and wonder if I'm doing something wrong. I am experienced with Django where the changes to code ...
6
votes
1answer
485 views
How does JRebel work?
Does JRebel use Javassist or some kind of bytecode manipulation? I'm asking this out of pure interest, I don't actually "need" to know :)
6
votes
4answers
2k views
JRebel Alternatives?
Are there any feature-wise comparable alternatives to JRebel? Even though it's not a very expensive piece of software I would be interested to hear about possible free alternatives.
3
votes
3answers
446 views
When using maven jetty:run - is it possible to disable the compilation step?
I'm working with Eclipse and Maven and run my application using the Maven jetty plugin.
I find it mildly irritating that Maven insists on recompiling my files every time I execute jetty:run. It is ...
3
votes
2answers
317 views
Is JRebel ever used in production environments? What can it reload on the JVM?
Is JRebel ever used in production environments? Is it something to just help you develop or is it appropriate for reloading things (especially next gen languages (non-Java)) on the JVM? What (at the ...
2
votes
1answer
218 views
How to create an SBT Run configuration in IntelliJ IDEA 11 Community Edition?
I have created a Lift project ifor IDEA 11 Community Edition using an sbt-idea plugin.
It compiles and runs well from SBT plugins SBT console, I`m also able to debug it via creating right "Remote" ...
2
votes
1answer
100 views
Using JRebel to swap the bytecode of a class
As said, I'd like to change the bytecode during execution.
I am not running any sort of application or web server, it's just for a command line program.
Of course I could just create a new ...
2
votes
1answer
224 views
Can JRebel redeploy changes in Maven dependencies?
So I have a multi module Maven web app running in eclipse and tomcat with wtp.
However the deployment of the application takes some time: building sub modules if changed and starting the application ...
2
votes
2answers
483 views
Getting JRebel to work with 'mvn tomcat:run'
I was wondering if someone could point me in the direction of getting JRebel to work when I execute 'mvn tomcat:run' from the command line. I can get JRebel to work in my IDE (IntelliJ IDEA), but it ...
1
vote
0answers
14 views
Do security providers cause ClassLoader leaks in Java?
In my Java EE (Glassfish 3.1.1) application I register a security provider:
public static final class XoauthProvider extends Provider {
public XoauthProvider() {
super("Google Xoauth ...
1
vote
1answer
82 views
Configure JRebel with Seam 2.2.0.GA (seam-gen project)
I've been trying to configure JRebel 4.5 to work with a project generated by seam-gen. My JBoss server 5.1 is already configured (I can see the JRebel greeting when starting the server, JRebel Agent ...
1
vote
1answer
79 views
JRebel removes all logging from a Grails project
I've got a project written in Grails. When I run it from a console with
grails run-app
I've got all my logs printed to the console, just as I want it.
However once I start it using JRebel, there ...
1
vote
1answer
338 views
JSF and automatic reload of xhtml files
I had some problems with hot-reloading XHTML files using JRebel, Spring, JSF Mojarra 2.0.3 and WebLogic 10.3.
JRebel reloads regular Java classes and js/css files under /WebContent successfully, but ...
1
vote
0answers
481 views
How to set up JRebel in a Tomcat environment
I'm having a hard time getting JRebel to work in my current development environment.
I have multi module maven projects. Currently, the Tomcat instance is controlled via service (tomcat monitor) and ...
1
vote
2answers
217 views
Is JRebel necessary to run Maven?
Greetings,
I am trying to start a scala/liftweb project for deployment on Google App Engine. To do this, i need to package it up as a .war using maven.
However, whenever I run the 'mvn' command, I ...
1
vote
3answers
125 views
What is the fastest way to develop a servlet using Maven, Glassfish, and JRebel?
Just using the command line, what is the fastest way to fire up the embedded glassfish server make a change to a file, recompile, then redeploy the code?
I'm using:
mvn embedded-glassfish:run
...
1
vote
2answers
174 views
jrebel - all classes reloading
Recently jrebel has started reloading all of the classes in our project when we make a jersey request as well as when we shut down. It doesn't seem to be every request but if you wait a while between ...
0
votes
0answers
27 views
JRebel with web-fragments giving 404 errors after modification
I have been trying to get JRebel to work with a web project which contains web fragments. However, after I change the code and JRebel deploys the changes, the web application starts giving 404 errors ...
0
votes
0answers
188 views
JRebel and Maven plugin setup for IntelliJ - java.lang.OutOfMemoryError: PermGen space
Can anyone help?
I am using Appfuse archetype project in IDEA with maven and JRebel plugins. Below is what I am getting when I run jetty:run from the Maven Projects in Idea. I increased MAVEN_OPTS in ...
0
votes
1answer
84 views
Failed to install JRebel 4.5.1 in RAD 7.0
I downloaded JRebel 4.5.1 update site zip, and then try to install it using a local update site, the only compatible version is "JRebel for Eclipse 3.2 and RAD 7.0".
However, I got below exception ...
0
votes
2answers
169 views
deploy web project from Eclipse using JRebel
I'm trying to deploy a multi-module Maven project from Eclipse to a local Tomcat using JRebel. The project has the following structure:
root [packaging: pom]
|
|--- domain [packaging: jar
|
|--- ...
0
votes
1answer
89 views
using JRebel in Eclipse RCP development
When developing a eclipse rcp applicatin,I need to restart the application after I changed my code.My question is obviously should be this :
How can I use JRebel in RCP applition development, so I do ...
0
votes
1answer
176 views
Jrebel, Spring MVC and TIles. Can't get Jrebel to pick up changes to views.xml
I'm trying to use Jrebel with IntelliJ 10. I'm working on Spring Roo generated project which uses tiles. There are multiple views.xml in my class path.
What I would like to know is if JRebel will ...
0
votes
1answer
135 views
run junit as server and inject changes?
for some testing purposes it would be great not having to restart my jetty server for every test run.
With jrebel i can apply source changes directly.
Is it possible to run my jetty server in a way ...
0
votes
2answers
251 views
How to load the modified classes which has been imported to scalate without jetty-restart?
I am using scalate as my view templates, and sbt + jrebel. But I found if the classes imported to scalate has been modified, we have to restart jetty, or there may be complication errors.
The code is ...
0
votes
2answers
492 views
Problem - Remote Hot Deployment, Multi-Module Maven Project
I know there is a lot of information here... but there may be other people with problems like this, and I think it would be a great help to discuss this, or at least get some decent input/suggestions ...
0
votes
2answers
428 views
Jrebel eclipse tomcat republish problem
when using jrebel, How can I make it automaticly republish static resource such as HTML javascript and jsp?
0
votes
1answer
657 views
Hibernate / seam : hibernate.show_sql setting
<persistence-unit name="acmDB" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
...