PropertyResourceBundle files > when to use and where to place in Tomcat?
hi all,
In a previous project, I saw that several properties-files were used to save environment-specific settings like the login to our database, the login to LDAP etc etc...
Now, in a new project, I'm investigating it a bit more and several websites say to use property-files for language-and-locale specific things (like labels,....). Isn't it common to use it also for configuration parameters that can change over time, or isn't that the intention of resourcebundles?
secondly, i'm struggling to make it work in my tomcat. i have a very simple test-application that reads values out of the file. when i place the file in the same folder as my java files, it becomes packaged in my war file in the same directory al my class-files, and then it works.
But how should I do it, when I don't want the file in my war ?
I tried to drop the properties file almost everywhere on my filesystem, but it always crashes and says "can not find resourcebundle"...
(i work with tomcat 5.5.23).

