Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Prevent Auto reload of Webapp in Tomcat

843841May 7 2004 — edited May 11 2004
I 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!
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 8 2004
Added on May 7 2004
2 comments
722 views