Spring bean定义的优先级是什么?

时间:2013-03-05 20:45:47

标签: java spring

当使用相同的名称定义多个Spring bean时,哪一个会隐藏其他的?

假设我在org.example包中有几个用@Component("bean")注释的类,另外还有一个包含以下内容的applicationContext.xml:

<context:component-scan base-package="org.example"/>
<alias name="aliasedBean" alias="bean"/>
<bean id="aliasedBean" class="org.example.AliasedBean"/>
<bean id="bean" class="org.example.XmlBean"/>
<import resource="otherApplicationContext.xml"/>

当我执行applicationContext.getBean("bean")时会检索到哪个bean?

根据Spring documentation

  

每个bean都有一个或多个标识符。这些标识符在托管bean的容器中必须是唯一的。

但是,我知道(因为我测试过)Spring完成后不会抱怨。一个定义将隐藏其他定义。但我无法找出规则是什么。

我想这样做是为了测试目的。我使用基于注释的配置来定义真实(生产)bean。然后我想使用特定于测试的XML配置文件来覆盖这些定义并注入模拟bean。

编辑:由于你有几个要求提供日志,我花了一些时间创建一些。他们是:

  0 INFO  org.springframework.context.support.ClassPathXmlApplicationContext - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@3934f69a: startup date [Wed Mar 06 23:04:35 CET 2013]; root of context hierarchy
 45 INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [applicationContext.xml]
223 INFO  org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'bean': replacing [Generic bean: class [org.example.AnnotatedBean]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in file [/Users/etienne/Documents/Développement/Registre/workspace/SpringPrecedence/target/classes/org/example/AnnotatedBean.class]] with [Generic bean: class [org.example.XmlBean]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [applicationContext.xml]]
223 INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [otherApplicationContext.xml]
246 INFO  org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'bean': replacing [Generic bean: class [org.example.XmlBean]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [applicationContext.xml]] with [Generic bean: class [org.example.ImportedXmlBean]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [otherApplicationContext.xml]]
290 INFO  org.springframework.beans.factory.support.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@6aba4211: defining beans [bean,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,aliasedBean,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor]; root of factory hierarchy
290 INFO  org.example.AliasedBean - Construction of AliasedBean.
302 INFO  org.example.Main - Application context loaded.
302 INFO  org.springframework.context.support.ClassPathXmlApplicationContext - Closing org.springframework.context.support.ClassPathXmlApplicationContext@3934f69a: startup date [Wed Mar 06 23:04:35 CET 2013]; root of context hierarchy
302 INFO  org.springframework.beans.factory.support.DefaultListableBeanFactory - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@6aba4211: defining beans [bean,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,aliasedBean,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor]; root of factory hierarchy

经过一些测试后,我发现在上下文创建期间我遇到异常,如果:

  • 我有两个@Component("bean")
  • 我在相同的 XML文件中有两个<bean id="bean"/>个元素。

1 个答案:

答案 0 :(得分:27)

  • Bean按照xml定义文件中的顺序进行注册。

  • 扫描的bean在找到xml标记的位置注册,但扫描的bean不能覆盖以前注册的bean定义。

  • 如果DefaultListableBeanFactory.allowBeanDefinitionOverriding为真(默认情况下),Xml bean定义可以覆盖任何以前的bean定义。

所以XML胜利。

如果首先放置组件扫描标记,xml bean将覆盖扫描标记。如果你把它放在最后,扫描的bean将被忽略。

修改

如果在bean定义中的name属性中声明或使用别名标记声明别名,则别名会有不同的行为。

  • 使用alias标记声明的别名会隐藏任何后来的bean定义,并使用相同的名称。
  • 在name属性中声明的别名通过抛出BeanDefinitionParsingException来阻止任何其他bean定义使用相同的名称。

例如:

 <bean id="foo" name="bar" class="Foo" />
 <bean id="bar" class="Bar" />   -- throw Exception (name bar is in use)

<bean id="foo" class="Foo" />
<alias name="foo" alias="bar" />
<bean id="bar" class="Bar" /> -- Hidden by alias no exception thrown

不同之处在于BeanDefinitionParserDelegate在bean元素嵌套的同一bean级别保存一个名称和别名列表,并在解析bean定义时检查名称唯一性。

alias标记由DefaultBeanDefinitionDocumentReader.processAliasRegistration()直接处理,解析器委托不知道这些名称。

我不知道这是一个bug还是故意的,但reference没有说什么,似乎预计别名的内部和外部声明具有相同的行为。