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

溫馨提示×

溫馨提示×

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

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

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

岫岩| 定安县| 阿拉善右旗| 台东市| 大安市| 佛冈县| 会同县| 明水县| 阿克苏市| 全州县| 湘阴县| 潍坊市| 禹州市| 墨江| 连平县| 涿州市| 上蔡县| 城固县| 茶陵县| 宜川县| 克拉玛依市| 高淳县| 襄汾县| 航空| 绥中县| 桦甸市| 夏河县| 迭部县| 察雅县| 康马县| 禹城市| 泰兴市| 通渭县| 潜江市| 吕梁市| 个旧市| 宁陕县| 勃利县| 无为县| 广德县| 抚顺县|