For example:
MyApp is a web app that contains a properties file (server.properties) that describes config data (e.g. server names) for the app. In the development phase
Remember, that in J2EE, you are NOT guaranteed to be able to access files from outside the J2EE environment (no direct file access).
You would have to use JNDI to point to a datasource containing your data, or a properties file in your deployment artifacts.
Websphere, for example, doesn't allow direct file access by default.