您好,登錄后才能下訂單哦!
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"> <!-- 下面配置驅動Spring調用BeingFactory的靜態getBeing()方法來創建Bean 該bean元素包含的constructor-arg元素用于為靜態工廠方法指定參數, 因此這段配置會驅動Spring以反射方式來執行如下代碼: dog = org.crazyit.app.factory.BeingFactory.getBeing("dog"); --> <bean id="dog" class="org.crazyit.app.factory.BeingFactory" factory-method="getBeing"> <!-- 配置靜態工廠方法的參數 --> <constructor-arg value="dog"/> <!-- 驅動Spring以"我是狗"為參數來執行dog的setMsg()方法 --> <property name="msg" value="我是狗"/> </bean> <!-- 下面配置會驅動Spring以反射方式來執行如下代碼: dog = org.crazyit.app.factory.BeingFactory.getBeing("cat"); --> <bean id="cat" class="org.crazyit.app.factory.BeingFactory" factory-method="getBeing"> <!-- 配置靜態工廠方法的參數 --> <constructor-arg value="cat"/> <!-- 驅動Spring以"我是貓"為參數來執行dog的setMsg()方法 --> <property name="msg" value="我是貓"/> </bean></beans>
二 接口
package org.crazyit.app.service;public interface Being{ public void testBeing();}
三 實現類
1 Cat
package org.crazyit.app.service.impl;import org.crazyit.app.service.*;public class Cat implements Being{ private String msg; // msg的setter方法 public void setMsg(String msg) { this.msg = msg; } // 實現接口必須實現的testBeing方法 public void testBeing() { System.out.println(msg + ",貓喜歡吃老鼠"); }}
2 Dog
package org.crazyit.app.service.impl;import org.crazyit.app.service.*;public class Dog implements Being{ private String msg; // msg的setter方法 public void setMsg(String msg) { this.msg = msg; } // 實現接口必須實現的testBeing()方法 public void testBeing() { System.out.println(msg + ",狗愛啃骨頭"); }}
四 工廠類
package org.crazyit.app.factory;import org.crazyit.app.service.impl.*;import org.crazyit.app.service.*;public class BeingFactory{ // 返回Being實例的靜態工廠方法 // arg參數決定返回哪個Being類的實例 public static Being getBeing(String arg) { // 調用此靜態方法的參數為dog,則返回Dog實例 if (arg.equalsIgnoreCase("dog")) { return new Dog(); } // 否則返回Cat實例 else { return new Cat(); } }}
五 測試類
package lee;import org.springframework.context.*;import org.springframework.context.support.*;import org.crazyit.app.service.*;public class SpringTest{ public static void main(String[] args) { // 以類加載路徑下的配置文件創建ClassPathResource實例 ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); Being b1 = ctx.getBean("dog" , Being.class); b1.testBeing(); Being b2 = ctx.getBean("cat" , Being.class); b2.testBeing(); }}
六 測試結果
我是狗,狗愛啃骨頭我是貓,貓喜歡吃老鼠
看完上述內容,你們掌握Spring中怎么利用靜態工廠方法創建Bean的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。