You should have a way to find out the path to the property file, which you can then wrap in the file and pass the load () method of the property object.
If you run Tomcat services inside, you are not working as the user who you installed it, so you cannot get the home directory. Most likely you will need to hard record SOMETHING.
Edit: The property file refers to the application. See http://www.exampledepot.com/egs/java.lang/ClassOrigin.html for an example of how to get the file name for bytecode for this class. You should be able to continue from there.
Class cls = this.getClass();
ProtectionDomain pDomain = cls.getProtectionDomain();
CodeSource cSource = pDomain.getCodeSource();
URL loc = cSource.getLocation(); // file:/c:/almanac14/examples/
, .