For this bean :
<bean id="myBean"class="com.MyBean">
<property name="test" value="mytest"/>
</bean>
What is an approprate method of update the property value at runtime ?
I've read about Lookup method injection : http://docs.spring.io/spring/docs/3.0.0.M3/reference/html/ch04s03.html#beans-factory-method-injection
But I don't think this is suited to this scenario as I want to change the value of a property not re-instantiate a Spring managed bean, but perhaps this is the same thing in Spring ?