InfoQ

News

Multiple Techniques Seek to Bring Dynamic Deployment to JEE

Posted by Charles Humble on Dec 14, 2007 09:07 AM

Community
Java
Topics
Dynamic Languages ,
Enterprise Architecture
Tags
WebLogic ,
JBoss
Web application developers using dynamically typed interpreted languages like PHP, Python or Ruby are used to being able to make a change in their application and see it immediately by refreshing the browser. Whilst this capability is generally supported for JSP pages, in the Java EE world a developer typically needs to go through a build and deploy cycle each time they want to test a change, a process which can dramatically slow down incremental development.

A number of vendors are looking to improve the situation for Java and, broadly, two techniques are being used.

The first and most well established involves reloading the entire ClassLoader. This is the approach that is used by WebLogic's ChangeAwareClassLoader for example. The method has two substantial limitations. The first is that state information is lost and has to be re-created. The second is that, whilst typically faster than a full re-deploy, it is still time consuming since a number of steps need to be performed. In an application server environment these may include:

  1. Destroying all running listeners (HTTPEvenListeners etc.), Servlets and Filters.
  2. Creating a new ClassLoader.
  3. Re-initialising listeners, Servlets and Filters.
  4. Restoring state information

Reloading of object state is typically restricted to objects that implement Serializable and do not contain any non-serializable fields as described in the context of the Aranea framework in a blog entry here. JBoss has done some work to extend it for Seam and Java EE 5 using two ClassLoaders, one for the Seam components and one for EJB3/Hibernate etc. When something changes in the Seam components or configuration, Seam is re-started without a full re-deploy being required. Changes for EJB/Hibernate components still require a full re-deploy since there is currently no way to dynamically load the Hibernate metamodel. The JBoss Tools IDE project aims to make this as seamless as possible to the developer. The serialization technique should also work for a number of other frameworks such as Rife and Tapestry 5.

The second approach is JVM level hotswapping. Java SE 5 introduced a limited form of hotswapping providing the ability to redefine a class at runtime without dropping its ClassLoader or abandoning existing entities. However the declared fields and methods of the class cannot be changed, which limits its usefulness. A number of vendors are now stepping in to try and improve the situation, amongst them ZeroTurnaroud and BEA.

ZeroTurnaround have recently announced the final release of Java Rebel 1.0 which sees a number of improvements over the first public release including better performance, reflection support, and better support for Java 1.4. The number of supported application and web servers has also increased and includes:

  • BEA WebLogic 8.x, 9.x, 10.x
  • Oracle OC4J 9.x, 10.x
  • Tomcat 4.x, 5.x, 6.x
  • JBoss 3.x, 4.x (on Java 5 or later)
  • Jetty 5.x, 6.x (on Java 5 or later)

It may be possible to get unsupported Application Servers such as Glassfish or WebSphere to work using a custom ClassLoader as described here. The 1.0 release does not yet support annotations though this is planned for 1.1. JavaRebel is commercial software with a developer seat costing $149. A free trial is available.

The BEA offering is an alternative to their ChangeAwareClassLoader called FastSwap with very similar capabilities and limitations to JavaRebel though it is also obviously restricted to the WebLogic server. It is currently available in the technology preview of WebLogic 10.3 and described in more detail here (PDF file).

Full hotswapping for a statically typed language like Java is still very much an active research topic and may never be achieved. However the work that is going on under JSR 292 for dynamic language support in Java 7 is looking to improve the situation for dynamic languages that target the JVM. The hope is that the combination of invokedynamic and full hotswapping should allow implementations of languages like Python, Ruby and Groovy to use the JVM object model directly. This will improve the performance of those languages on the JVM considerably and that work should in turn help drive out more advanced hotswapping for the Java language itself.

current hotswap often good enough by Patrick Mueller Posted Dec 14, 2007 9:35 AM
A story of a Java Rebel by Tomasz Blachowicz Posted Dec 14, 2007 11:02 AM
Class reloading+config file reloading=save time by Chetan Mehrotra Posted Dec 14, 2007 12:27 PM
Re: Class reloading+config file reloading=save time by Jevgeni Kabanov Posted Dec 14, 2007 1:04 PM
Anyone try FastSwap yet? by David Cabelus Posted Jan 25, 2008 12:44 PM
  1. Back to top

    current hotswap often good enough

    Dec 14, 2007 9:35 AM by Patrick Mueller

    My experience with hotswap is that often you aren't creating new fields or methods in Java, during medium-long development strides; ie, I might go an hour futzing with just the bits in a method body. In that case, I can stay linked up with my runtime, in Eclipse, and have those changes loaded dynamically, during debug. Sure, it would be nice to support MORE situations; especially, probably, just adding methods and fields, which seems like a fairly safe thing to do; but the current situation is not too terrible.

  2. Back to top

    A story of a Java Rebel

    Dec 14, 2007 11:02 AM by Tomasz Blachowicz

    A cartoon: A story of a Java Rebel is classic one! Hilarious :) http://www.zeroturnaround.com/a-javarebel-story

  3. Back to top

    Class reloading+config file reloading=save time

    Dec 14, 2007 12:27 PM by Chetan Mehrotra

    I always wanted that feature in Java. With all the different frameworks the dev time gets waste considerably in server startup. I generally prefer following in my dev 1. Use exploded directory deployement format 2. IDE Hotswap 3. Some custom jsp to reload xml configuration required by framework like Spring,Struts e.g. reloading validation.xml for validator framework, properties file for message resources in Struts etc. Specially working with web ui it always happen that you miss out something Apart from class file reloading I would also want various framework should also have such options of auto reloading config files without server restart Javarebel looks promising but its commercial :)

  4. Back to top

    Re: Class reloading+config file reloading=save time

    Dec 14, 2007 1:04 PM by Jevgeni Kabanov

    Well think of the time you save and especially of the nerves you save by not being constantly interrupted. We actually have a calculator for financial implications in this executive presentation: http://www.zeroturnaround.com/presentation/.

  5. Back to top

    Anyone try FastSwap yet?

    Jan 25, 2008 12:44 PM by David Cabelus

    Has anyone tried FastSwap yet? We've seen dramatic improvements in iterative development cycle times with this new feature in WebLogic Server 10.3. I'd be interested in hearing feedback.

Educational Content

Bindings, Platforms, and Innovation

This presentation focuses on the Internet and separating myth from fact, history from the future, and the mundane from the imaginative. Bob Frankston presents a vision of what could and should be.

Orchestrating Long Running Activities with JBoss / JBPM

This article explores the use of JBoss and jBPM to implement design solutions that effectively address the issue of orchestrating long running activities.

Neo4j - The Benefits of Graph Databases

This presentation covers the use of graph databases as an optimal solution for data that is difficult to fit in static tables, rapidly evolving data or data that has a lot of optional attributes.

Realistic about Risk: Software development with Real Options

This session introduces Real Options and shows how it can help in running your project. Real Options is a decision-making process that can be used to manage risk.

Communication Flexibility Using Bindings

This article discusses the use of bindings on services and references (including the instance of non-configured bindings) as the means to implement SCA communications in a Web and SOA environment.

Writing DSLs in Groovy

After a short introduction to DSLs, Scott Davis plays with the keyboard showing how to approach the creation of a DSL by typing working snippets of Groovy code that get executed.

Scaling Agile with C/ALM (Collaborative Application Lifecycle Management)

IBM Rational and InfoQ present, Scaling Agile with C/ALM, an eBook showing organizations how to become “finely tuned software delivery machines” by enabling team integration and scaling.

Concurrent Programming with Microsoft F#

Amanda Laucher presents a real life enterprise application written in F#. She shows actual code snippets, explaining design decisions and suggesting how to use some of the F# constructs.