When modifying the web.xml (c:/mywebapps/app/WEB-INF/web.xml) the webapp does
not reload with this configuration...
<Host name="mysite.com" appBase="webapps">
<Context path="" docBase="c:/mywebapps/app" reloadable="false">
<WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>
</Host>
However, it does reload with the following, BUT, my webapp is loaded
twice...
<Host name="mysite.com" appBase="c:/mywebapps">
<Context path="" docBase="app" reloadable="false">
<WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>
</Host>
Note, I don't want to use the reloadable attribute. Can anyone find a
solution for either configuration?
--
View this message in context:
http://www.nabble.com/Cannot-reload-a-virtual-host-webapp-with-web.xml-tp25952430p25952430.html
Sent from the Tomcat - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]