I am using a third party library in my WebApp on tomcat.
The problem is that a class of that third party library requires initialization with an XML file
LibraryClass lb = new LibraryClass("file path.xml");
So where should I put files in tomcat directories in order to be able to access them from inside the webapp??
(Note that the class requires a String
for the absolute path, not a FileStream
for example)