I have a properties-file with a lot of values and I do not want to list them in my bean-configuration-file separately. E.g.:

<property name="foo">
    <value>${foo}</value>
</property>
<property name="bar">
    <value>${bar}</value>
</property>

and so on.

I imagine to inject all completely as java.util.Properties or less as a java.util.Map. Is there a way to do so?

link|improve this question
feedback

2 Answers

Yes, you can use <util:properties> to load a properties file and declare the resulting java.util.Properties object as a bean. You can then inject that as you would any other bean property.

See section C.2.2.3 of the Spring manual, and their example:

<util:properties id="myProps" location="classpath:com/foo/jdbc-production.properties"

Remember to declare the util: namespace as per these instructions.

link|improve this answer
I will try this - thanks!!! – Jan May 9 '11 at 15:41
Great - it worked! – Jan May 10 '11 at 9:26
feedback

It's possible with the PropertyOverrideConfigurer mechanism:

<context:property-override location="classpath:override.properties"/>

Properties file:

beanname1.foo=foovalue
beanname2.bar.baz=bazvalue

The mechanism is explained in the section 3.8.2.2 Example: the PropertyOverrideConfigurer

link|improve this answer
thanks for your answer - my fault, the properties-file will be edited by a "not-developer" and shall be "easy to read" for the editor with no special background. Thus, names of beans wouldn't be the right way to use as key. – Jan May 9 '11 at 15:41
feedback

Your Answer

 
or
required, but never shown

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