课程表

Spring 入门

Spring IoC 容器

Spring 依赖注入

Spring Beans 自动装配

Spring 基于注解的配置

Spring 框架

Spring 事务管理

Spring Web MVC 框架

工具箱
速查手册

Spring @Qualifier 注释

当前位置:免费教程 » Java相关 » Spring

可能会有这样一种情况,当你创建多个具有相同类型的 bean 时,并且想要用一个属性只为它们其中的一个进行装配,在这种情况下,你可以使用 @Qualifier 注释和 @Autowired 注释通过指定哪一个真正的 bean 将会被装配来消除混乱。下面显示的是使用 @Qualifier 注释的一个示例。

示例

让我们使 Eclipse IDE 处于工作状态,请按照下列步骤创建一个 Spring 应用程序:

步骤 描述
1 创建一个名为 SpringExample 的项目,并且在所创建项目的 src 文件夹下创建一个名为 com.tutorialspoint 的包。
2 使用 Add External JARs 选项添加所需的 Spring 库文件,就如在 Spring Hello World Example 章节中解释的那样。
3 com.tutorialspoint 包下创建 Java 类 StudentProfileMainApp
4 src 文件夹下创建 Beans 配置文件 Beans.xml
5 最后一步是创建所有 Java 文件和 Bean 配置文件的内容,并且按如下解释的那样运行应用程序。

这里是 Student.java 文件的内容:

  1. package com.tutorialspoint;
  2. public class Student {
  3. private Integer age;
  4. private String name;
  5. public void setAge(Integer age) {
  6. this.age = age;
  7. }
  8. public Integer getAge() {
  9. return age;
  10. }
  11. public void setName(String name) {
  12. this.name = name;
  13. }
  14. public String getName() {
  15. return name;
  16. }
  17. }

这里是 Profile.java 文件的内容:

  1. package com.tutorialspoint;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.beans.factory.annotation.Qualifier;
  4. public class Profile {
  5. @Autowired
  6. @Qualifier("student1")
  7. private Student student;
  8. public Profile(){
  9. System.out.println("Inside Profile constructor." );
  10. }
  11. public void printAge() {
  12. System.out.println("Age : " + student.getAge() );
  13. }
  14. public void printName() {
  15. System.out.println("Name : " + student.getName() );
  16. }
  17. }

下面是 MainApp.java 文件的内容:

  1. package com.tutorialspoint;
  2. import org.springframework.context.ApplicationContext;
  3. import org.springframework.context.support.ClassPathXmlApplicationContext;
  4. public class MainApp {
  5. public static void main(String[] args) {
  6. ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
  7. Profile profile = (Profile) context.getBean("profile");
  8. profile.printAge();
  9. profile.printName();
  10. }
  11. }

考虑下面配置文件 Beans.xml 的示例:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <beans xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xmlns:context="http://www.springframework.org/schema/context"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  8. http://www.springframework.org/schema/context
  9. http://www.springframework.org/schema/context/spring-context-3.0.xsd">
  10.  
  11. <context:annotation-config/>
  12.  
  13. <!-- Definition for profile bean -->
  14. <bean id="profile" class="com.tutorialspoint.Profile">
  15. </bean>
  16.  
  17. <!-- Definition for student1 bean -->
  18. <bean id="student1" class="com.tutorialspoint.Student">
  19. <property name="name" value="Zara" />
  20. <property name="age" value="11"/>
  21. </bean>
  22.  
  23. <!-- Definition for student2 bean -->
  24. <bean id="student2" class="com.tutorialspoint.Student">
  25. <property name="name" value="Nuha" />
  26. <property name="age" value="2"/>
  27. </bean>
  28.  
  29. </beans>

一旦你在源文件和 bean 配置文件中完成了上面两处改变,让我们运行一下应用程序。如果你的应用程序一切都正常的话,这将会输出以下消息:

  1. Inside Profile constructor.
  2. Age : 11
  3. Name : Zara
转载本站内容时,请务必注明来自W3xue,违者必究。
 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号