I have a spring project and I want to change the interface of my bean at runtime. This is the relevant part of my config.xml:
...
<bean id="myFinder" class="finder1"/>
<bean id="myLister" class="myLister">
<property name="myFinder">
<ref bean="myFinder"/>
</property>
</bean>
Problem: I have two interfaces. Call them for example finder1 and finder2. Now I want to change this interface (the "class" in the xml) with a jcombobox fromm my gui component and load the referenced finder at runtime, but I have no Idea how to change the xml content ("finder1" should be "finder2" after changing the value at the combobox).
Would be very nice if you could help me.
