How do I specify the path to a file in a web application? I have a folder named ‘templates’ under WEB-INF, I’ve been told that under GlassFish v3 the path should look like this:
./WebContent/WEB-INF/templates
but this way I’m getting a file not found exception. What do I have to change in order to make it work?
Ok, I figured this out. Can’t believe the solution was this simple. I just moved the templates folder to WebContent folder, same place JSP and HTML pages are at and changed the path in the DD to /templates. Now I’m pretty sure it’ll work under any web container on any server.