Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

1 Answer

Why are you not changing bean at run-time instead of interface.

Define both finder beans in xml condig file and change bean name at runtime.

share|improve this answer
Sorry, I am somewhat new to spring. Could you give me a little example please? – Dominik Jul 13 '12 at 13:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.