How to make reference link in properties file. For example, I have spring config:

  <property name="velocityProperties">
       <value> 
         <entry key="ds.resource.loader.instance">
             <ref bean="databaseVelocityTemplateLoader"/>
         </entry>
         <entry key="ds.resource.loader.resource.table">
             <value>v_template</value>
         </entry>
         <entry key="ds.resource.loader.resource.keycolumn">
             <value>N_ID</value>
         </entry>
       <value>
   </property>

And I want to write this config in file:

ds.resource.loader.resource.keycolumn=N_ID
ds.resource.loader.resource.table=v_template

How to write this ref: ds.resource.loader.instance ?

link|improve this question

40% accept rate
feedback

1 Answer

I'm not sure of a way built into Spring to do this, but you could extend the PropertiesPlaceholderConfigurer and override the convertPropertyValue() method to try to resolve a property value to a bean name before doing the normal property replacement.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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