On Fri, Aug 1, 2008 at 2:30 AM, ramesh <[EMAIL PROTECTED]>wrote: > > > Hi all, > > I am using on struts frame work with jdk 1.5 and tomcat 5.5. Is > there any way to reloads changes to Java classes on-the-fly without > redeploy > or restart tomcat?. > > My requirement as follows.I would like to make changes in java > file and these changes should reflect while using my web application > without > restarting tomcat. > > Thanks in advance, > > Ramesh Elkaturi, > > [Non-text portions of this message have been removed] > > > Ramesh, This link might help you: http://forums.sun.com/thread.jspa?messageID=2551222 Basically you will have to set reloadable to true for your webapp in the server.xml file
<Context path="/myapp" docBase="/myapp" debug="0" *reloadable="true"*crossContext="true"/> -- Satish Vellanki

