vote up 1 vote down star
2

I already know how to:

Load properties files into my Spring configuration using:

<context:property-placeholder location="aaa/bbb/ccc/stuff.properties"/>

Build properties objects on the fly using:

<props><prop key="abc">some value</prop></props>

But what I cant do, and would be really useful, is to have Spring load a properties file and then build the matching properties object. I could then inject this into a bean in the normal way.

I've searched for this elsewhere without success. Any ideas?

flag

2 Answers

vote up 3 vote down check

As @MetroidFan2002 implies, take a look at util:properties

<util:properties id="myProperties" location="classpath:com/foo/my.properties"/>
link|flag
vote up 0 vote down

Please see the Spring Reference Manual's Appendix and see if this helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.