Spring 注解注入—@Qualifier 注释

栏目: IT技术 · 发布时间: 5年前

内容简介:当创建多个具有相同类型的 bean 时,并且想要用一个属性只为它们其中的一个进行装配,在这种情况下,你可以使用--------构造方法------------age:张三

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

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

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

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

 1 package com.spring.chapter7;
 2 
 3 import java.util.List;
 4 import java.util.Set;
 5 
 6 import org.springframework.beans.factory.annotation.Autowired;
 7 import org.springframework.beans.factory.annotation.Qualifier;
 8 import org.springframework.beans.factory.annotation.Required;
 9 
10 
11 
12 public class Profile {
13     
14     @Autowired
15     @Qualifier("Student")    //这里的值就是bean的id,当我们改变此值跟随我们指定的bean进行注入
16     private Student student;
17     
18     public void printName() {
19         System.out.println("age:"+student.getName());
20     }    
21     
22     public void printAge() {
23         System.out.println("name:"+student.getAge());
24     }
25 
26     public Profile() {
27         System.out.println("--------构造方法------------");
28     }
29 }

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

 1 package com.spring.chapter7;
 2 
 3 
 4 import java.util.List;
 5 
 6 import org.springframework.context.ApplicationContext;
 7 import org.springframework.context.support.AbstractApplicationContext;
 8 import org.springframework.context.support.ClassPathXmlApplicationContext;
 9 
10 public class Main {
11     /**
12      * Spring @Qualifier  注解注入
13      * author:
14      * mail:2536201485@qq.com
15      * 时间:
16      */
17 
18     public static void main(String[] args) {
19         ApplicationContext applicationContext=new ClassPathXmlApplicationContext("spring_xml/spring.xml");
20         Profile profile=(Profile)applicationContext.getBean("Profile");
21         profile.printName();
22         profile.printAge();
23         
24         
25     }
26 
27 }

4.下面配置文件 spring.xml的示例:

 1     <!-- @Qualifier 注解 -->
 2     <bean id="Profile">
 3     </bean>
 4     <bean id="Student">
 5         <property name="name" value="张三"></property>
 6         <property name="age" value="23"></property>
 7     </bean>
 8     
 9     <bean id="Student2">
10         <property name="name" value="李四"></property>
11         <property name="age" value="22"></property>
12     </bean>

运行结果:

--------构造方法------------

age:张三

name:23


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

算法竞赛入门经典

算法竞赛入门经典

刘汝佳 / 清华大学出版社 / 2009-11 / 24.00元

《算法竞赛入门经典》是一本算法竞赛的入门教材,把C/C++语言、算法和解题有机地结合在了一起,淡化理论,注重学习方法和实践技巧。全书内容分为11章,包括程序设计入门、循环结构程序设计、数组和字符串、函数和递归、基础题目选解、数据结构基础、暴力求解法、高效算法设计、动态规划初步、数学概念与方法、图论模型与算法,覆盖了算法竞赛入门所需的主要知识点,并附有大量习题。书中的代码规范、简洁、易懂,不仅能帮助......一起来看看 《算法竞赛入门经典》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具