使用 CustomAutowireConfigurer
CustomAutowireConfigurer
是一个 BeanFactoryPostProcessor
,它允许您注册您自己的自定义限定符注释类型,即使它们没有使用 Spring 的 @Qualifier
注释进行注释。以下示例显示了如何使用 CustomAutowireConfigurer
<bean id="customAutowireConfigurer"
class="org.springframework.beans.factory.annotation.CustomAutowireConfigurer">
<property name="customQualifierTypes">
<set>
<value>example.CustomQualifier</value>
</set>
</property>
</bean>
AutowireCandidateResolver
通过以下方式确定自动装配候选对象
-
每个 bean 定义的
autowire-candidate
值 -
<beans/>
元素上可用的任何default-autowire-candidates
模式 -
@Qualifier
注释和使用CustomAutowireConfigurer
注册的任何自定义注释的存在
当多个 Bean 符合自动装配候选条件时,“主要”的确定方式如下:如果候选者中恰好有一个 Bean 定义将 primary
属性设置为 true
,则选择该 Bean。