亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring中如何使用Qualifier注解

發布時間:2021-07-12 10:03:42 來源:億速云 閱讀:122 作者:Leah 欄目:編程語言

Spring中如何使用Qualifier注解,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一 配置

<?xml version="1.0" encoding="GBK"?><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-4.0.xsd   http://www.springframework.org/schema/context   http://www.springframework.org/schema/context/spring-context-4.0.xsd">   <context:component-scan base-package="org.crazyit.app.service"/>  </beans>

二 接口

Axe

package org.crazyit.app.service;public interface Axe{   public String chop();}

Person

package org.crazyit.app.service;public interface Person{   public void useAxe();}

三 Bean

Chinese

package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import org.springframework.beans.factory.annotation.*;import org.crazyit.app.service.*;@Componentpublic class Chinese implements Person{  @Autowired  @Qualifier("steelAxe")  private Axe axe;//  // axe的setter方法//  @Autowired//  public void setAxe(@Qualifier("stoneAxe") Axe axe)//  {//    this.axe = axe;//  }  // 實現Person接口的useAxe()方法  public void useAxe()  {    // 調用axe的chop()方法,    // 表明Person對象依賴于axe對象    System.out.println(axe.chop());  }}

SteelAxe

package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import org.crazyit.app.service.*;@Componentpublic class SteelAxe implements Axe{  public String chop()  {    return "鋼斧砍柴真快";  }}

StoneAxe

package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import org.crazyit.app.service.*;@Componentpublic class StoneAxe implements Axe{  public String chop()  {    return "石斧砍柴好慢";  }}

四 測試類

package lee;import org.springframework.context.*;import org.springframework.context.support.*;import org.crazyit.app.service.*;public class BeanTest{  public static void main(String[] args)  {    // 創建Spring容器    AbstractApplicationContext ctx = new      ClassPathXmlApplicationContext("beans.xml");    // 注冊關閉鉤子    ctx.registerShutdownHook();    Person person = ctx.getBean("chinese" , Person.class);    person.useAxe();  }}

五 測試結果

鋼斧砍柴真快

關于Spring中如何使用Qualifier注解問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

塔城市| 龙山县| 富宁县| 宿迁市| 珠海市| 新龙县| 延川县| 个旧市| 赤壁市| 瓦房店市| 休宁县| 华安县| 张家界市| 铁力市| 喀什市| 江西省| 林芝县| 隆回县| 乌恰县| 偏关县| 澄迈县| 怀仁县| 靖安县| 南澳县| 屏山县| 黄平县| 合山市| 黔江区| 龙山县| 耒阳市| 武宁县| 铜山县| 辛集市| 清苑县| 芦山县| 大庆市| 垣曲县| 嵩明县| 吴川市| 邳州市| 怀集县|