If I have a class annotated as a component
@Component("dog")
picked up by a component scan, then later overridden by xml bean definition
<bean id="dog" class="org.mikeyp.Dog" />
then intellij will incorrectly display an error saying the bean name is duplicated, when it is valid spring? Is this a known bug ?
Mike.