In my Java EE web application, I need a place to put my properties file where I can find it using getResource() and then update that file.
Placing it in the lib directory doesn't seem to have worked for tomcat. Suggestions?
The application is that GXT needs to have a properties file to hold internationalized strings. I have a requirement to load these strings from a database table. So I have to create the properties file on startup. I am creating an empty one that goes into my jar file in the lib directory. Then I find that file and write to it with the new answers. It all works in jetty, but not in tomcat.
Thanks.