I have a Java EE
web application which is running on 2 node cluster of WAS 7.0.
This web application has multiple jar files, where in each jar file contains a list of utilities. I might add new jar files in future to this web application. We don't want downtime of this web application when we add new jars to it.
Is it possible to add new jar files to the web application without restarting it? Will the changes take effect instantly?
How do I update an existing jar file which is already loaded by the class loaded? Is it possible to do that without restarting it?
I read about something called Hot deployment
in WAS. They have mentioned, Hot Deployment
doesn't work on Solaris and HP-UX OSs.
Could you please suggest the best ways to approach this problem?