If I use component scanning in Spring 2.5 but then also define a controller in xml.
Do I get two instances of this bean in my application context? If so which instance will be called for its related RequestMappings?
<bean id="myController" class="domain.MyController">
<property name="filters">
<list>
<ref local="filter1"/>
<ref local="filter2"/>
</list>
</property>
</bean>