Prevent Auto reload of Webapp in Tomcat
843841May 7 2004 — edited May 11 2004I need to prevent the auto-reload of my webapps in Tomcat. So i am having the Context entry in server.xml as ...
<Context path="/xyz" docBase="id" debug="0" reloadable="false"/>
Also defining the AppContext.xml in "<Tomcat-home>/conf/Catalina/localhost/" as ...
<Context path="/abc/klm" docBase="abc" debug="0" reloadable="false">
Now, while running the app., if i change some param values in web.xml, the new values can be had without restarting Tomcat. Which is somethin i wanna prevent. In a nutshell ... I want that --- Changes to web.xml should not be picked up until server restart. ---
Cheers!