Reports incorrect autowiring of Spring beans configured in XML application contexts.

Example:


public interface FooInterface {...}
@Component public class FooBean implements FooInterface {...}
@Component public class OtherBean implements FooInterface {...}

@Component
public class MyComponent {
	 public void setFooInterface(FooInterface foo) {...}
}

<beans>
	<bean class="beans.OtherBean" id="otherBean"/>
	<bean class="beans.FooBean" id="fooBean"/>

	<bean autowire="byType" class="beans.MyComponent" id="foo"/> <!-- reports "Could not autowire. There is more than one bean of 'FooInterface' type. -->
                                                                   <!--          Beans: otherBean,fooBean. Properties: 'fooInterface' " -->
</beans>