how do I dynamically change the properties of a bean at runtime using java spring? I have a bean mainView, which should use as property "class" either "class1" or "class2". This decision should be made on base of an property-file, where the property "withSmartcard" is "Y" or "N".
ApplicationContext:
<bean id="mainView"
class="mainView">
<property name="angebotsClient" ref="angebotsClient" />
<property name="class" ref="class1" />
</bean>
<bean id="class1"
class="class1">
<constructor-arg ref="mainView" />
</bean>
<bean id="class2"
class="class2">
<constructor-arg ref="mainView" />
</bean>
PropertyFile:
withSmartcard=Y
Agree with @Olivier above.
There are many ways to do it.
I would recommend item no:1 above.
I believe you can write a class that implements BeanFactoryPostProcessor. If a bean of this class exists in the XML configuration file (alongside your other beans), Spring will automatically call its postProcessBeanFactory(ConfigurableListableBeanFactory) method. The ConfigurableListableBeanFactory object handed to this method can be used to change any bean definitions before Spring goes to work initializing them.
You want the PropertyPlaceholderConfigurer. That section of the manual demonstrates it better than I could on the spot.
In your example, you'd need to either to change the value of the property to
class1
orclass2
(the name of the desired bean in the spring context).Alternately, your configuration could be:
with the configuration file containing: classToUse=fully.qualified.name.of.some.Class
Using bean or class names would not be acceptable in a user-editable configuration file, and you really need to use "Y" and "N" as the configuration parameter values. In that case, you'll just have to do this in Java, Spring isn't meant to be turing-complete.
mainView could access the application context directly:
A cleaner solution would be encapsulating processing of the user configuration in its own class that would do the above to reduce the number of classes that need to be ApplicationContextAware and inject it into your other classes as needed.
Using BeanFactoryPostProcessor, you could register a definition of the class property programmatically. Using FactoryBean, you can create a bean dynamically. Both are somewhat advanced usages of Spring.
An aside: I'm not sure if your example config is legal, given the cyclic dependency between mainView and class1 / class2.
Use class factory. which can return instance on the basis of your property.
Use a PropertyPlaceHolder to manage your properties file ..
and change your ref attribute as follow :
In your properties file some.where.MyApp.properties, add a key named withSmartCardClassImplementation which will have class1 or class2 (you choose) for value.