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 ?