- 資訊首頁(yè) > 開(kāi)發(fā)技術(shù) > 編程語(yǔ)言 >
- Spring中怎么實(shí)現容器后處理器操作
這期內容當中小編將會(huì )給大家帶來(lái)有關(guān)Spring中怎么實(shí)現容器后處理器操作,文章內容豐富且以專(zhuān)業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
一 配置文件
<?xml version="1.0" encoding="GBK"?><beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> <!-- 配置兩個(gè)簡(jiǎn)單Bean實(shí)例 --> <bean id="steelAxe" class="org.crazyit.app.service.impl.SteelAxe"/> <bean id="chinese" class="org.crazyit.app.service.impl.Chinese" init-method="init" p:name="孫悟空" p:axe-ref="steelAxe"/> <!-- 配置容器后處理器 --> <bean id="beanFactoryPostProcessor" class="org.crazyit.app.util.MyBeanFactoryPostProcessor"/></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();}
三 Bean
Chinese
package org.crazyit.app.service.impl;import org.springframework.beans.factory.InitializingBean;import org.springframework.beans.BeansException;import org.springframework.beans.factory.config.BeanPostProcessor;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import org.crazyit.app.service.*;public class Chinese implements Person,InitializingBean{ private Axe axe; private String name; public Chinese() { System.out.println("Spring實(shí)例化主調bean:Chinese實(shí)例..."); } public void setAxe(Axe axe) { this.axe = axe; } public void setName(String name) { System.out.println("Spring執行setName()方法注入依賴(lài)關(guān)系..."); this.name = name; } public void useAxe() { System.out.println(name + axe.chop()); } // 下面是兩個(gè)生命周期方法 public void init() { System.out.println("正在執行初始化方法 init..."); } public void afterPropertiesSet() throws Exception { System.out.println("正在執行初始化方法 afterPropertiesSet..."); }}
SteelAxe
package org.crazyit.app.service.impl;import org.crazyit.app.service.*;public class SteelAxe implements Axe{ public SteelAxe() { System.out.println("Spring實(shí)例化依賴(lài)bean:SteelAxe實(shí)例..."); } public String chop() { return "鋼斧砍柴真快"; }}
四 容器后處理器
package org.crazyit.app.util;import org.springframework.beans.BeansException;import org.springframework.beans.factory.config.BeanFactoryPostProcessor;import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;public class MyBeanFactoryPostProcessor implements BeanFactoryPostProcessor{ /** * 重寫(xiě)該方法,對Spring進(jìn)行后處理。 * @param beanFactory Spring容器本身 */ public void postProcessBeanFactory( ConfigurableListableBeanFactory beanFactory) throws BeansException { System.out.println("程序對Spring所做的BeanFactory的初始化沒(méi)有改變..."); System.out.println("Spring容器是:" + beanFactory); }}
五 測試類(lèi)
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) { // 以ApplicationContex作為Spring容器 // 它會(huì )自動(dòng)注冊容器后處理器、Bean后處理器 ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); Person p = (Person)ctx.getBean("chinese"); p.useAxe(); }}
六 測試結果
程序對Spring所做的BeanFactory的初始化沒(méi)有改變...Spring容器是:org.springframework.beans.factory.support.DefaultListableBeanFactory@6a024a67: defining beans [steelAxe,chinese,beanFactoryPostProcessor]; root of factory hierarchySpring實(shí)例化依賴(lài)bean:SteelAxe實(shí)例...Spring實(shí)例化主調bean:Chinese實(shí)例...Spring執行setName()方法注入依賴(lài)關(guān)系...正在執行初始化方法 afterPropertiesSet...正在執行初始化方法 init...孫悟空鋼斧砍柴真快
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng )、來(lái)自本網(wǎng)站內容采集于網(wǎng)絡(luò )互聯(lián)網(wǎng)轉載等其它媒體和分享為主,內容觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如侵犯了原作者的版權,請告知一經(jīng)查實(shí),將立刻刪除涉嫌侵權內容,聯(lián)系我們QQ:712375056,同時(shí)歡迎投稿傳遞力量。
Copyright ? 2009-2022 56dr.com. All Rights Reserved. 特網(wǎng)科技 特網(wǎng)云 版權所有 特網(wǎng)科技 粵ICP備16109289號
域名注冊服務(wù)機構:阿里云計算有限公司(萬(wàn)網(wǎng)) 域名服務(wù)機構:煙臺帝思普網(wǎng)絡(luò )科技有限公司(DNSPod) CDN服務(wù):阿里云計算有限公司 百度云 中國互聯(lián)網(wǎng)舉報中心 增值電信業(yè)務(wù)經(jīng)營(yíng)許可證B2
建議您使用Chrome、Firefox、Edge、IE10及以上版本和360等主流瀏覽器瀏覽本網(wǎng)站