Hi
I am working in project using the version 1.2 (after years with 2.5 and 3)
I would like to know if the is a way de create a map as a bean in the xml configuration file.
Regards
Hi
I am working in project using the version 1.2 (after years with 2.5 and 3)
I would like to know if the is a way de create a map as a bean in the xml configuration file.
Regards
Find a solution
It should work<bean id="..." class="java.util.HashMap" factory-bean="">
<constructor-arg>
<map>
<entry key="..." value-ref="..." />
</map>
</constructor-arg>
</bean>