The web application I am working on needs to return dynamic URLs to clients (the HATEOAS principle of the REST methodology). Some of the paths involve files that live in a static folder on the file system, so to serve these files, the following configuration exists in the Tomcat server.xml:

<Context docBase="C:/path_to_static_files_folder" path="/App_Context_Root/static"/>
<Context docBase="App_Context_Root" path="/App_Context_Root" reloadable="true" source="org.eclipse.jst.jee.server:App_Context_Root"/>

What I would like to know at this point is if there's a way to get to the "/App_Context_Root/static" from within the web application. I intend to use it while building some of the URLs that will be returned to the clients, instead of hardcoding the folder name ("static" in this case) in one more place.

Thanks in advance for your help.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.