您好,登錄后才能下訂單哦!
這篇文章主要介紹“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的定義與用法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。