Is there an easier way to specify multiple System Properties on the command line to a java program rather than having multiple -D statements?

Trying to avoid this:

 java -jar -DNAME="myName" -DVERSION="1.0" -DLOCATION="home" program.jar

I thought I had seen an example of someone using one -D and some quoted string after that, but I can't find the example again.

Thanks!

NOTE: ring bearer's comment is the right answer, but I can't accept a comment.

link|improve this question

2  
Answer is NO. You might have seen an example where somebody would have set something like : -DAguments="a=1,b=2,c=3,d=4,e=cow" and then the application would parse the "Arguments" property string to get individual values. – ring bearer Sep 8 '11 at 17:03
@ring bearer - Yup, that's what happened. Thanks! If you want to throw your comment into an answer I'll accept it. – Tyler DeWitt Sep 16 '11 at 0:44
feedback

4 Answers

up vote 2 down vote accepted

Answer is NO. You might have seen an example where somebody would have set something like : -DAguments=a=1,b=2,c=3,d=4,e=cow and then the application would parse value of Arguments property string to get individual values.

link|improve this answer
feedback

Instead of passing the properties as an argument, you may use a .properties for storing them.

link|improve this answer
+1: You can also load them into the system properties with System.getProperties().load(new FileInputStream("my.properties")) However having your own Properties is likely to be a better approach. – Peter Lawrey Sep 8 '11 at 18:02
feedback

There's nothing on the Documentation that mentions about anything like that.

Here's a quote:

-Dproperty=value Set a system property value. If value is a string that contains spaces, you must enclose the string in double quotes:

java -Dfoo="some string" SomeClass

link|improve this answer
feedback

I just need a confirmation regarding setting my own properties as System Properties. Currently am using Apachew Tomcat and i want to load my custom properties while my web application starts up . So is it a Good Practise to set these custom properties of mine [which is written in a .properties file ] as System property and acces in rest of the application using System.getProperty("...") or is there a better way of achieving the same .Please Suggest

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.