您好,登錄后才能下訂單哦!
BeanFactory和FactoryBean在Spring中的區別是什么?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
BeanFactory接口:
IoC容器的頂級接口,是IoC容器的最基礎實現,也是訪問Spring容器的根接口,負責對bean的創建,訪問等工作。
其實在容器的初始化的時候,會對BeanFactory做很多事情,如:
obtainFreshBeanFactory();獲取BeanFactory;
prepareBeanFactory(beanFactory);BeanFactory的預準備工作(BeanFactory進行一些設置)
postProcessBeanFactory(beanFactory);BeanFactory準備工作完成后進行的后置處理工作;
invokeBeanFactoryPostProcessors(beanFactory);執行BeanFactoryPostProcessor的方法;
BeanFactoryPostProcessor:BeanFactory的后置處理器。在BeanFactory標準初始化之后執行的;
FactoryBean接口:
可以返回bean的實例的工廠bean,通過實現該接口可以對bean進行一些額外的操作,例如根據不同的配置類型返回不同類型的bean,簡化xml配置等。在使用上也有些特殊,BeanFactory接口中有一個字符常量String FACTORY_BEAN_PREFIX = "&"; 當我們去獲取BeanFactory類型的bean時,如果beanName不加&則獲取到對應bean的實例;
如果beanName加上&,則獲取到BeanFactory本身的實例;FactoryBean接口對應Spring框架來說占有重要的地位,Spring本身就提供了70多個FactoryBean的實現。他們隱藏了實例化一些復雜的細節,給上層應用帶來了便利。從Spring3.0開始,FactoryBean開始支持泛型。
代碼展示:
//創建一個Spring定義的FactoryBean public class ColorFactoryBean implements FactoryBean<Color> { //返回一個Color對象,這個對象會添加到容器中 @Override public Color getObject() throws Exception { // TODO Auto-generated method stub System.out.println("ColorFactoryBean...getObject..."); return new Color(); } @Override public Class<?> getObjectType() { // TODO Auto-generated method stub return Color.class; } //是單例? //true:這個bean是單實例,在容器中保存一份 //false:多實例,每次獲取都會創建一個新的bean; @Override public boolean isSingleton() { // TODO Auto-generated method stub return false; } }
public class Color { private Car car; public Car getCar() { return car; } public void setCar(Car car) { this.car = car; } @Override public String toString() { return "Color [car=" + car + "]"; } }
xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <bean id="colorFactoryBean" class="spring2.ColorFactoryBean"></bean> </beans>
測試類:
public class Test1 { ClassPathXmlApplicationContext xmlBeanFactory = null; @Before public void initXmlBeanFactory() { System.out.println("\n========測試方法開始=======\n"); xmlBeanFactory = new ClassPathXmlApplicationContext("spring3.xml"); } @After public void after() { System.out.println("\n========測試方法結束=======\n"); } @Test public void test8() { System.out.println(xmlBeanFactory.getBean("colorFactoryBean")); System.out.println("==================="); System.out.println(xmlBeanFactory.getBean("&colorFactoryBean")); } }
測試結果:
========測試方法開始======= 十二月 09, 2019 4:49:52 下午 org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh 信息: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@2e5c649: startup date [Mon Dec 09 16:49:52 CST 2019]; root of context hierarchy 十二月 09, 2019 4:49:52 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions 信息: Loading XML bean definitions from class path resource [spring3.xml] ColorFactoryBean...getObject... Color [car=null] =================== spring2.ColorFactoryBean@6ddf90b0 ========測試方法結束=======
看完上述內容,你們掌握BeanFactory和FactoryBean在Spring中的區別是什么的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。