If you go strictly by the spec, you cannot load files from within an app-server. You need to either load it using a classloader or put your config in a database.
Classloader
The classloader is a utility responsible for loading bytecode from files, urls or other places into memory where the java runtime can use it to create classes. The classloader is thus the interface between the java-vm and some kind of storage. Classloaders hide the details of how resources are accessed, thus enables you to load resources independent of whether they are in a file or other places. In an applications server, java would like that you don't assume having a file-system available (your classes can come from somewhere else), and load resources solely through classloaders.
But of course, somewhere in the stack, the classloader does actually access the filesystem, so the question is how to configure this connection. This is where it becomes hairy, because in an application server there are several classloaders (atleast one for each application) and it is not safe to make any assumptions on how these are structured. There are basically two options:
- you typicalle have your application packaged in a war or ear-file which contains classes and jar-files. You can put your .properties-file together with these classes and load it through the "local" classloader ("local" in quotes, because this is not a real term, and as I said, you cannot make any assumptions here).
- since this means re-packaging your war/ear-file each time you want to change parameters, this isn't really much easier than re-building your application. The alternative is to make your config-file available to the system-wide classloader defined on startup. This is configured by the CLASSPATH environment variable (typically in the bat/cmd/sh-script responsible for starting weblogic, as mentioned by others). Thus, what you do is: create a directory for configuration-files, add this to the CLASSPATH in the startup-script, load with the following code (untested):
// the classloader is referenced from a class, might as well use the current
ClassLoader cl = this.getClass().getClassLoader();
// getSystemResourceAsStream loads a resource using the default classloader,
// as opposed to using the classloader which "this" was loaded from
InputStream in = cl.getSystemResourceAsStream("com/me/config.properties");
you can load properties from this input stream the same way you did for files.
Database
An even more robust route would be to store all of your configuration in a database and load it through a DataStore using JDBC. However, there isn't a default API for loading from a database into a Properties-object, so you would need to make this yourself.
A simple design would be to have a database-table like this:
CREATE TABLE config (
key varchar(255) primary key,
value varchar(255)
)
The code for parsing this into a properties-object is left as an exercise to the reader (I guess google can tell you if someone else has done something similar)