<!-- The contents of this file will be loaded for each web application -->
 
<!-- Made three changes from the default configuration:
     1) Added 'reloadable="true"' so that you do not have to restart the server
        when you install a modified version of a servlet.
     2) Added WEB-INF/struts-config.xml to the watched resources so that
        you do not have to restart the server whenever you change the Struts config file.
     3) Added WEB-INF/faces-config.xml to the watched resources so that
        you do not have to restart the server whenever you change the JSF config file.
        
     For details, see http://www.coreservlets.com/Apache-Tomcat-Tutorial/.   
-->
<Context reloadable="true">

    <!-- Default set of monitored resources -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
    <WatchedResource>WEB-INF/struts-config.xml</WatchedResource>
    <WatchedResource>WEB-INF/faces-config.xml</WatchedResource>
	
    <!-- Uncomment this to disable session persistence across Tomcat restarts -->
    <!--
    <Manager pathname="" />
    -->

</Context>
