I am making a web application in Eclipse (JSP) and use Tomcat as a server (integrated into Eclipse). I have to create the object below and specify the path to configuration file. This absolute path is working great:
Store store = StoreFactory.create("file:///C:/Users/Aliens/workspace/myProject/WebContent/config/sdb.ttl");
However I am wondering why I can’t use relative path. Should it be "config/sdb.ttl" right (if the name of the project is a root)? But it cannot locate it this way (NotFoundException).
Relative disk file system paths are relative to the current working directory which is dependent on how you started the application (in Eclipse it would be the project folder, in Command console it would be the currently opened folder, in Tomcat manager/service it would be the
Tomacat/binfolder, etc). You have no control over this from inside the Java code, so forget about it.In JSP/Servlet you can use
ServletContext#getRealPath()to convert a relative web content path (it has its root in the public webcontent, in your case the/WebContentfolder) to an absolute disk file system path. So:The
ServletContextis available in servlets by the inheritedgetServletContext()method.