Possible Duplicate:
How to reference another property in java.util.Properties?
I want to refer to other variables in my properties file, e.g.:
name=World
text=Hello $(name)!
“text” should now be “Hello World!”.
I know I could do it by hand but is there anything I could use which does the work for me?
One of the options mentioned in the question that Michael linked to in his comment above that I feel may help you is eproperties. Looks pretty promising.
HTH!