当找到多个同类型的 Bean 的定义时,@Autowired
注入的时候不知道要用哪一个,会报异常,可以使用 @Qualifier
指定要注入的 Bean。
@Resource 相当于 @Autowired 和 @Qualifier 的组合。
spring-beans.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.xtuer.beans"/>
<bean id="door1" class="com.xtuer.beans.Door"/> <bean id="door2" class="com.xtuer.beans.Door"/> </beans>
|
House
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| package com.xtuer.beans;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Component;
@Component public class House { private String description;
@Autowired @Qualifier("door1") private Door door;
public String getDescription() { return description; }
public void setDescription(String description) { this.description = description; }
public Door getDoor() { return door; }
public void setDoor(Door door) { this.door = door; } }
|