Looking for a solution that will provide us more functionality within Spring properties such as:
- nested structures
- maps/lists
- properties referencing other properties. Example:
- city.name=Toronto
- city.address=#{city.name}, 123 Ave SW
I tried EProperties (Google) and Commons Configurations (Apache) but doesn't seem to integrate very well with the Spring Framework.
Also, we're using Velocity to access properties using #springMessage("city.address"), so it needs to work for that.
Does anyone know how I can achieve the above by extending the default Properties capability?