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 system property key such as user.home for my working-dir property. It would be nice to be able to do this since I can have different versions of the .properties in resource directory of the source package and test package respectively. I want to define different values for working-dir for my production and testing environment.
| ||||
|
feedback
|
|
You cannot do that directly, however you can parse your properties in your code and programatically expand the variables, e.g.
Here is a simple implementation of the above:
| ||||
|
feedback
|
|
Just tried Apache commons configuration's variable interpolation and it works perfect. | |||
|
feedback
|