Hi,
Question:
Is there a way by which I can link a hashmap's value to the return value of a bean's method in the config file?
I am looking for something like
<bean id="test" class="test.SomClass">
<property>
<map>
<entry key="test1">
<value>beanName.getValueFromMethod</value>
</entry>
</map>
</bean>
Thanks in advance

