| Author |
hot deployment
|
pravanya Gullapudi
Greenhorn
Joined: May 07, 2007
Posts: 16
|
|
|
what is hot deployment?
|
 |
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
|
|
Hot deployment is a term for deploying or upgrading a web application without having to shutdown and restart the application server. Tomcat is mostly capable of this. There are a few gotchas such as the handling of static variables from classes stored in common or shared directories. Also repeated hot restarts or redeploys will cause a slight memory leak to show. All in all though, it does a good job. If you need true 24/7 up time and can never afford to shut it down for a moment, then Tomcat also offers clustering capability with session replication so different nodes can be brought down and brought back up without interrupting service to the application.
|
Java API J2EE API Servlet Spec JSP Spec How to ask a question... Simple Servlet Examples jsonf
|
 |
 |
|
|
subject: hot deployment
|
|
|