Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to configure an object's properties at runtime either via a properties file, possibly XML (even though it can be a little more verbose). The properties may be nested, so I think I would use something like Apache's Bean Utils.

I was wondering what other formats are out there instead of properties and xml.

Thanks,

Walter

share|improve this question

1 Answer

up vote 1 down vote accepted
share|improve this answer
+1 for JSON. I'm not a big fan of indent-sensitive YAML though. – Benoit Jun 9 '10 at 16:36
Well modern YAML can actually be written with curly braces and ends up being mostly upward-compatible from JSON. Plus YAML is a lot richer and allows encoding of data types, re-references, etc. – Pointy Jun 9 '10 at 16:42
thanks for both references. – Walter White Jun 9 '10 at 18:40

Your Answer

 
discard

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