您好,登錄后才能下訂單哦!
本文實例講述了Spring實戰之注入嵌套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"> <bean id="chinese" class="org.crazyit.app.service.impl.Chinese"> <!-- 驅動調用chinese的setAxe()方法,使用嵌套Bean作為參數 --> <property name="axe"> <!-- 嵌套Bean配置的對象僅作為setter方法的參數 嵌套Bean不能被容器訪問,因此無需指定id屬性--> <bean class="org.crazyit.app.service.impl.SteelAxe"/> </property> </bean> </beans>
二 接口
Axe
package org.crazyit.app.service; public interface Axe { // Axe接口里有個砍的方法 public String chop(); }
Person
package org.crazyit.app.service; public interface Person { // 定義一個使用斧子的方法 public void useAxe(); }
三 實現
Chinese
package org.crazyit.app.service.impl; import org.crazyit.app.service.*; public class Chinese implements Person { private Axe axe; // 設值注入所需的setter方法 public void setAxe(Axe axe) { this.axe = axe; } // 實現Person接口的useAxe方法 public void useAxe() { // 調用axe的chop()方法, // 表明Person對象依賴于axe對象 System.out.println(axe.chop()); } }
StoneAxe
package org.crazyit.app.service.impl; import org.crazyit.app.service.*; public class StoneAxe implements Axe { public String chop() { return "石斧砍柴好慢"; } }
SteelAxe
package org.crazyit.app.service.impl; import org.crazyit.app.service.*; public class SteelAxe implements Axe { public String chop() { return "鋼斧砍柴真快"; } }
四 測試類
package lee; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.crazyit.app.service.*; public class BeanTest { public static void main(String[] args)throws Exception { // 創建Spring容器 ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); // 獲取chinese 實例 Person p = ctx.getBean("chinese" , Person.class); // 調用useAxe()方法 p.useAxe(); } }
五 運行
鋼斧砍柴真快
更多關于java相關內容感興趣的讀者可查看本站專題:《Spring框架入門與進階教程》、《Java數據結構與算法教程》、《Java操作DOM節點技巧總結》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》
希望本文所述對大家java程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。