Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im currently looking to consolidate a load of configuration files. Currently for every application we have we have a set of config files for each environment we deploy to.

So for example we have a properties file for test, one for uat and one for prod. With lots of duplicated stuff.

What im looking to do is replace these with a consolidated file, using scoping and wildcards.

so, for example, I could have the following

*.value1=blah
uat.value1=blahblah

*.value2={value1}blah

So in prod:

value1=blah, value2=blahblah

In uat:

value1=blahblah, value2=blahblahblah

In test:

value1=blah, value2=blahblah

Now, I could roll this myself, although I'd look to leverage commons-config, but I was wondering if anyone knew of any projects out there that do this kind of thing?

share|improve this question
Looks like Maven filtering with a default properties file will solve this: maven.apache.org/guides/mini/… – orangepips Jun 27 '12 at 16:10
If you don't need it to be in the syntax of Java properties, then Config4J will do what you want. See config4star.org. (Disclaimer: I'm the main author of that project.) – Ciaran McHale Jun 27 '12 at 21:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.