91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Spring抽象Bean和子Bean的定義與用法

發布時間:2021-08-12 12:50:43 來源:億速云 閱讀:143 作者:chen 欄目:編程語言

這篇文章主要介紹“Spring抽象Bean和子Bean的定義與用法”,在日常操作中,相信很多人在Spring抽象Bean和子Bean的定義與用法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Spring抽象Bean和子Bean的定義與用法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

一 配置

<?xml version="1.0" encoding="GBK"?><beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xmlns="http://www.springframework.org/schema/beans"   xsi:schemaLocation="http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">   <!-- 定義Axe實例 -->   <bean id="steelAxe" class="org.crazyit.app.service.impl.SteelAxe"/>   <!-- 指定abstract="true"定義抽象Bean -->   <bean id="personTemplate" abstract="true">      <property name="name" value="crazyit"/>      <property name="axe" ref="steelAxe"/>   </bean>   <!-- 通過指定parent屬性指定下面Bean配置可從父Bean繼承得到配置信息 -->   <bean id="chinese" class="org.crazyit.app.service.impl.Chinese"      parent="personTemplate"/>   <bean id="american" class="org.crazyit.app.service.impl.American"      parent="personTemplate"/></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();}

三 實現類

1 American

package org.crazyit.app.service.impl;import org.crazyit.app.service.*;public class American implements Person{   private Axe axe;   private String name;   public void setAxe(Axe axe)   {      System.out.println("Spring執行依賴關系注入...");      this.axe = axe;   }   public void setName(String name)   {      this.name = name;   }   public void useAxe()   {      System.out.println("我是美國人:名字為:" + name        + "。正在用斧頭" + axe.chop());   }}

2 Chinese

package org.crazyit.app.service.impl;import org.crazyit.app.service.*;public class Chinese implements Person{   private Axe axe;   private String name;   public void setAxe(Axe axe)   {      System.out.println("Spring執行依賴關系注入...");      this.axe = axe;   }   public void setName(String name)   {      this.name = name;   }   public void useAxe()   {      System.out.println("我是中國人:名字為:" + name        + "。正在用斧頭" + axe.chop());   }}

3 SteelAxe

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

4 StoneAxe

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

四 測試類

package lee;import org.springframework.context.ApplicationContext;import org.springframework.context.support.*;import org.crazyit.app.service.*;public class BeanTest{  public static void main(String[] args)  {    ApplicationContext ctx = new      ClassPathXmlApplicationContext("beans.xml");  }}

五 測試結果

Spring執行依賴關系注入...Spring執行依賴關系注入...

到此,關于“Spring抽象Bean和子Bean的定義與用法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

洛阳市| 迭部县| 德庆县| 渝北区| 苏尼特左旗| 离岛区| 方山县| 丹凤县| 澄迈县| 蓬溪县| 喀喇| 沧州市| 定边县| 汾阳市| 山西省| 浪卡子县| 台东市| 湘阴县| 墨玉县| 金堂县| 龙江县| 区。| 政和县| 乌海市| 西峡县| 潼南县| 班玛县| 张家川| 高碑店市| 文登市| 福州市| 汨罗市| 宁化县| 三门峡市| 仙游县| 南京市| 凤台县| 黑河市| 巴马| 遵义市| 静安区|