Is there an open source (and ideally free software) alternative to ZeroTurnaround's class reloading tool JRebel?

link|improve this question

1  
That would be great! I don't think it is too expensive, specially if you have a customer that buy it for you. – OscarRyz Oct 14 '09 at 16:15
4  
Oscar: I'm sure Java Rebel is worth it's price. The price is not the issue. It's more that I'd prefer my entire tool chain to be open source, and ideally free software. Having closed source pay-for-tools in the tool chain introduces unneccessary hurdles (entering credit card details, keeping track of the receipt, keeping track of the license code, being unable to look at the source code to debug errors, etc, etc.). – knorv Oct 15 '09 at 11:46
1  
If you plan to sell/distribute your application - you will need to keep track of the licenses and dependencies very very closely. It is a real pain to guarantee the proper patent/ip coverage that some client will request from you. And you will have some quality time with lawyers to make sure what part of your application need to be open source. That gets a whole lot easier if your application is itself free software ( that´s the point of free software after all ) – vdr Oct 16 '09 at 22:24
I never met person that sell their software, why you think he would lik to do that? we all work for some big companies that doesnt sell software. – IAdapter Oct 17 '09 at 11:50
2  
01: Could you re-phrase that? I'm not sure I'm getting your point. – knorv Oct 18 '09 at 0:20
show 2 more comments
feedback

12 Answers

up vote 27 down vote accepted
+50

I'm one of the JRebel developers and I can assure you that no open source alternatives exist at the moment (you're free to take this with a grain of salt). The best solutions available are described here on our site: http://www.zeroturnaround.com/jrebel/faq/#Arent%5Fthere%5Ffreeopen%5Fsource%5Fexisting

There is also some work that Oracle did (FastSwap), which hasn't been updated in a while, isn't free and isn't too stable. Finally there's been some work done recently to improve the HotSwap functionality in the da Vinci project, but it is unlikely to make it into the OpenJDK any time soon due to issues with security, performance and garbage collection.

JRebel also now does much more than just reload classes. It also bypasses the build phase by mapping the project directly to the application. There is also a lot of integration we do with frameworks like Spring to allow reloading the configuration. I understand your wish to have a fully open source toolchain, but consider also that JRebel is not an essential part of the chain and you can remove it at any moment without having any dependencies in either application or the environment.

link|improve this answer
1  
Jevgeni: Thanks for your answer! Let me be clear that I think JavaRebel is a very clever piece of engineering. Impressive work! – knorv Oct 18 '09 at 0:18
feedback

Dynamic Code Evolution VM is open source alternative you can try for reloading classes. It will do entire class redefinition, even reloads changes done to class hierarchy (or) implement interfaces which jrebel can't do. you can find the binaries here http://ssw.jku.at/dcevm/

link|improve this answer
+1 For a great find and a valid answer to the question! – Ramon Dec 10 '10 at 20:24
feedback

You should have a look at the playframework. It has a similar screencast that shows how to develop a simple web application with database connectivity in minutes step by step without redeploy.

The documentation says:

There are no compilation, packaging or deployment phases while working with play. However play implements two distinct environments: DEV mode during the development phase and PROD mode when the application is deployed.

link|improve this answer
feedback

http://code.google.com/p/fakereplace/ or http://github.com/fakereplace/fakereplace

Almost same with JRebel, using javaagent but free and opensource. Maybe someone can help?? At present it contains integration code for the following frameworks:

  • JSF
  • Seam 2
  • Metawidget
link|improve this answer
Awesome find! Thank you! This does indeed seem to work. It also has a very nice explanation of the underlying mechanism here: github.com/fakereplace/fakereplace/wiki/How-It-Works – rustyx Jan 26 at 21:15
feedback

I don't believe there is, and if there is I doubt it will have the same feature set and app server support that JavaRebel does. I believe JavaRebel uses the Javassist library, you could look at that and try to write something that meets your needs yourself? Depending on what features you want this may be doable and worth your effort. If not try Java Rebel, last time I looked the pricing was very reasonable, and they are a small operation doing great work.

EDIT:

The closest I have found is the ClassGhost library. It does not have the functionality of JRebel. It looks like it may just be a gui over the JVM hotswap ability. But it may meet your current needs, and you would have the source to modify if you wanted to write more functionality. Take a look at the site.

link|improve this answer
broschb: Thanks for the Javassist pointer. The price is not the issue, see my reply to Oscar above. I want my entire tool chain to be open source, and ideally free software. – knorv Oct 15 '09 at 11:48
Just to be clear: Javassist has no connection to the core functionality of JRebel. It's only used to make integration with third-party servers and frameworks easier. – Jevgeni Kabanov Oct 19 '09 at 16:48
feedback

HotSwap is the best jrebal alternative dynamic class loader tool for development purpose , http://wikis.sun.com/display/mlvm/HotSwap, but this one is still in development , but we can use it for our development environment

Features

  • Swap Method Body
  • Add Method
  • Remove Method
  • Add Field
  • Remove Field
  • Add Supertype
  • Remove Supertype
link|improve this answer
1  
The project site is at ssw.jku.at/dcevm – Adam Schmideg Jan 22 '11 at 1:37
feedback

There is a rather new but abstract deployment mapping into workspace:

http://www.intersult.com/wiki/Wiki.jsp?page=Intersult%20Live

It is based on jvm instrumentation, thus configured with -javaagent option. Various config files can be used to map WAR, EAR, JAR or exploded deployments into workspace. Full support of updating XHTML-file and limited reloading of class files.

link|improve this answer
feedback

http://java.net/projects/agentsmith/

it's a java agent that uses the java.lang.instrument classes, so does what hotswap does without forcing you using eclipse debug mode (i.e.: when you run things from the command line)

Building Smith:

$ svn co https://java.net/projects/agentsmith/sources/svn/show/tags/smith-1.0
$ cd smith-1.0
$ ant

More info:

https://svn.java.net/svn/agentsmith~svn/trunk/www/index.html
http://www.fissore.org/blog/agent-smith/ (old, but important!)
link|improve this answer
feedback

Seam hot deployment share some functionality with JavaRebel. But this solution works only for Seam and JBoss AS :(

link|improve this answer
feedback

Tapestry does automatic class reloading, but I don't believe the whole setup is at the same level as JRebel.

But maybe you can use it as the base of an OSS version.

link|improve this answer
feedback

A plugin called Manik Hot deploy exists for eclipse. It can be found on the Eclipse Market place.

link|improve this answer
feedback

JRebel 4.5 Released, includes free version of JRebel

link|improve this answer
Did you read the question? He's looking for open source. The "free" JRebel will send details about everything you do back to their company. No thanks. – rustyx Jan 26 at 21:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.