Reputation: 2111
I have several systems that all need to load the same properties to the JVM. I can use the -D flag to load one property at a time, but i am looking for something that will load all the properties in an entire file at one time. For instance:
I could just add --options-file=blah.properties to all jvms on my network, once, and from then on only change the properties file, which could be a single central file over a network share.
Thank you,
EDIT: Any arguments or commands must also work in a windows environment. Therefore any bash or scripting hacks specific to unix will not work.
Upvotes: 10
Views: 19229
Reputation: 1516
If you use Ant to lanuch the Java process, 9000's answer (plus his windows comment) will work, and you can have the launcher deal with the OS difference.
There is a StackOverflow thread here which describes how to determine the OS from ant
Upvotes: 0
Reputation: 272387
Some options:
getClass().getResourceAsStream()
I solve this problem normally by using Spring (used for other reasons too) and a PropertyPlaceholderConfigurer. That allows me to specify one or more locations for property files and modifies the Spring configuration in-place.
Upvotes: 3
Reputation: 40894
That's roughly how we do it:
java $(tr '\n' ' ' < options_file) other args...
Here options_file
contains ready -Dsomething
or -Xsomething
values, one per line. The tr
command just replaces every newline with a space.
Upvotes: 9
Reputation: 38255
I don't think you can do that via the command line (without some bash hacks, perhaps), but you definitely can do that programatically:
Simply set one property -DmyPropertiesFile=/your/properties/file.properties
and then read that with one of the Properties.load()
overloads. After that, System.setProperties(yourProps)
should do what you expect.
Of course, this requires that you can hook this code early enough so that your properties will be available when needed (For instance, if the main()
method is yours, this is perfect).
Upvotes: 8