Hi all,
is it possible to set a property value for a bean as a result of a (static) method?
PieperCode:<bean id="testBean" class="test.bean"> <property name="testProp" ref="RESULT OF METHOD"/> </bean>
Hi all,
is it possible to set a property value for a bean as a result of a (static) method?
PieperCode:<bean id="testBean" class="test.bean"> <property name="testProp" ref="RESULT OF METHOD"/> </bean>
Please see ref doc:
http://static.springframework.org/sp...s.html#d0e2351
for MethodInvokingFactoryBean
Thanks for the hint.
It's working fine.
Pieper