扫码一下
查看教程更方便
当创建多个相同类型的 bean 并希望仅将其中一个与属性关联时,可能会出现这种情况。 在这种情况下,我们可以使用 @Qualifier 注释和 @Autowired 通过指定将连接哪个确切 bean 来消除混淆。 下面是一个例子来展示@Qualifier 注解的使用。
在 com.jiyik 包下创建 Java 类 Student、Profile 和 MainApp。
这是 Student.java 文件的内容
Student.java
package com.jiyik; public class Student { private Integer age; private String name; public void setAge(Integer age) { this.age = age; } public Integer getAge() { return age; } public void setName(String name) { this.name = name; } public String getName() { return name; } }
下面是 Profile.java 文件的内容
Profile.java
package com.jiyik; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; public class Profile { @Autowired @Qualifier("student1") private Student student; public Profile(){ System.out.println("Inside Profile constructor." ); } public void printAge() { System.out.println("Age : " + student.getAge() ); } public void printName() { System.out.println("Name : " + student.getName() ); } }
以下是 MainApp.java 文件的内容。
MainApp.java
package com.jiyik; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class MainApp { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml"); Profile profile = (Profile) context.getBean("profile"); profile.printAge(); profile.printName(); } }
考虑以下配置文件 Beans.xml 的示例
Beans.xml
<?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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:annotation-config/>
<bean id = "profile" class = "com.jiyik.Profile"></bean>
<bean id = "student1" class = "com.jiyik.Student">
<property name = "name" value = "Zara" />
<property name = "age" value = "11"/>
</bean>
<bean id = "student2" class = "com.jiyik.Student">
<property name = "name" value = "Nuha" />
<property name = "age" value = "2"/>
</bean>
</beans>
完成源代码和 bean 配置文件后,让我们运行应用程序。 如果应用程序一切正常,这将打印以下消息
Inside Profile constructor.
Age : 11
Name : Zara