I using clojure+ring for build web application running on Glassfish 3. For correct initialization log4j i need find correct absolute path to WEB-INF folder.
Is the any way to determine absolute path to WEB-INF folder in web app running on app-server/
You can use the ServletContext.getRealPath() method.
For example, insert the following into an XHTML:
This will show the full path to your XHTML file, e.g. when you insert this into a file called
index.xhtml
, it will show you the directory which contains thisindex.xhtml
.Because most of the time, the XHTML files are not placed in the
WEB-INF
folder, you may have to concat the strings in the following way:You can also do it in a handler:
See also: