Spring自動裝配@Qualifier範例


在Spring中,@Qualifier的意思是,Bean有資格自動裝配上到一個欄位。請參見以下情形:

自動裝配範例

參見下面的例子,它會自動裝配「person」 bean 到 customer 的 person 屬性。
package com.tw511.common;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;

public class Customer {

	@Autowired
	private Person person;
	//...
}
但是,兩個類似的 bean 「com.tw511.common.Person」 在 bean 組態檔案中宣告。Spring會知道哪個person bean應當自動裝配?
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

<bean 
class ="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>
	
	<bean id="customer" class="com.tw511.common.Customer" />
		
	<bean id="personA" class="com.tw511.common.Person" >
		<property name="name" value="yiibaiA" />
	</bean>
	
	<bean id="personB" class="com.tw511.common.Person" >
		<property name="name" value="yiibaiB" />
	</bean>

</beans>
當你執行上面的例子,它產生以下異常:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: 
	No unique bean of type [com.tw511.common.Person] is defined: 
		expected single matching bean but found 2: [personA, personB]

@Qualifier範例

要解決上述問題,需要使用 @Quanlifier 告訴Spring哪些bean應當自動裝配。
package com.tw511.common;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;

public class Customer {

	@Autowired
	@Qualifier("personA")
	private Person person;
	//...
}
在這種情況下,Bean 「personA」 會被自動裝配。
	
	
Customer [person=Person [name=yiibaiA], type=1, action=buy]

下載程式碼  – http://pan.baidu.com/s/1bnMJH8r