中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Spring中怎么利用@Resource配置依賴

發布時間:2021-07-15 14:18:10 來源:億速云 閱讀:214 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關Spring中怎么利用@Resource配置依賴,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

一 配置

<?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">   <!-- 自動掃描指定包及其子包下的所有Bean類 -->   <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 javax.annotation.*;import org.crazyit.app.service.*;@Componentpublic class Chinese implements Person{  private Axe axe;  // axe的setter方法  @Resource(name="stoneAxe")  public void setAxe(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容器    ApplicationContext ctx = new      ClassPathXmlApplicationContext("beans.xml");    Person person = ctx.getBean("chinese" , Person.class);    person.useAxe();  }}

五 測試結果

石斧砍柴好慢

看完上述內容,你們對Spring中怎么利用@Resource配置依賴有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

石首市| 磐石市| 新宁县| 酉阳| 崇礼县| 太仆寺旗| 浑源县| 三都| 郴州市| 新沂市| 应用必备| 九龙城区| 横峰县| 焉耆| 久治县| 井研县| 明水县| 达孜县| 绥化市| 汶川县| 河北区| 绩溪县| 沙坪坝区| 华池县| 突泉县| 南京市| 涟源市| 楚雄市| 云南省| 六枝特区| 洱源县| 西昌市| 万源市| 柳州市| 镇康县| 济阳县| 宝应县| 五寨县| 射洪县| 洞头县| 宜兰县|