My Java web application includes a configuration file (e.g. myapp.xml) in the war file. I provide the path to this file in my web.xml file as follows.
<servlet>
<servlet-name>wc</servlet-name>
<servlet-class>com.myapp.servlets.WC</servlet-class>
<init-param>
<param-name>configfile</param-name>
<param-value>${catalina.base}/webapps/myapp/WEB-INF/myapp.xml</param-value>
</init-param>
</servlet>
The problem is that I now want to deploy various versions on the same server for testing and development and each will have a different path under webapps. I want to avoid modifying the web.xml file for each deployment, but I can't find any way to reference the WEB-INF folder.
This is what I would like to do:
<servlet>
<servlet-name>wc</servlet-name>
<servlet-class>com.myapp.servlets.WC</servlet-class>
<init-param>
<param-name>configfile</param-name>
<param-value>${app.base}/myapp.xml</param-value>
</init-param>
</servlet>
Where ${app.base} == ${catalina.base}/webapps/myapp/WEB-INF
Is there some available variable that would give me the path to the application directory?
If not, can you think of some other way to accomplish this?