If I have 2 properties file.properties files setup in my Spring XML as so:
<util:properties id="serverProperties" location="file:./applications/MyApplication/server.properties"/> <util:properties id="someConfig" location="file:./applications/MyApplication/config.properties"/> How can I enjectinject via annotations these properties files into a bean with java.util.Properties?
How can I grab specific properties via Spring annotations?
Cheers!