I want to initialize the value of a property in the application context to the value obtained from a instance getter methof of some java bean class.
<bean id="myJavaBean" class="com.package.JavaBean">
<property name="myValue" value="bean.someValue"/>
</bean>
It is possible? How?
Thanks
Torsten
