How do I know what file reference to use to get a file from my WAR.
The structure of the WAR is:
WAR src - model - web
The safest way to access this file should be something like this:
InputStream input = getClass().getClassLoader().getResourceAsStream("your/path/enter/here");