Tagged Questions
14
votes
4answers
32k views
How can I specify system properties in Tomcat configuration on startup?
I understand that I can specify system properties to Tomcat by passing arguments with the -D parameter, for example "-Dmy.prop=value".
I am wondering if there is a cleaner way of doing this by ...
11
votes
9answers
2k views
Crowdsourcing a Complete list of Common Java System Properties and Known Values
I've been inspired by another question: Best Practice for Using Java System Properties
I'm currently looking for a complete list of Java system properties and possible values. I'm working on a simple ...
1
vote
2answers
137 views
inheriting the user.home property within my custom .properties file
Can I do something like working-dir="file:${user.home}/some-directory" within my .properties file? I am using ResourceBundle to load configuration from a .properties file and I would to inherit a ...