First, I run my method as a java application
in eclipse and it works fine.
Then, when I run it on the tomcat server, it blows up.
Here is the code:
try(BufferedReader br = new BufferedReader(new FileReader(new File(Constants.USERMAP_FILE_LOCATION))))
Here is the Exception:
com.mycompany.is.dt.Exception.SubversionUtilityException: usermap (No such file or directory)
I also tried changing the path. I right clicked on the file in my project and went to properties. It gave me the path /DevToolsSvn2Git/usermap
but I still got this excetion.
com.mycompany.is.dt.Exception.SubversionUtilityException: /DevToolsSvn2Git/usermap (No such file or directory)
Is something changing in the WAR that I am not aware of?