温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Spring中怎么实现容器后处理器操作

发布时间:2021-07-26 14:11:05 来源:亿速云 阅读:110 作者:Leah 栏目:编程语言

这期内容当中小编将会给大家带来有关Spring中怎么实现容器后处理器操作,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

一 配置文件

<?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">   <!-- 配置两个简单Bean实例 -->   <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实例化主调bean:Chinese实例...");  }  public void setAxe(Axe axe)  {    this.axe = axe;  }  public void setName(String name)  {    System.out.println("Spring执行setName()方法注入依赖关系...");    this.name = name;  }  public void useAxe()  {    System.out.println(name + axe.chop());  }  // 下面是两个生命周期方法  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实例化依赖bean:SteelAxe实例...");   }   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{  /**   * 重写该方法,对Spring进行后处理。   * @param beanFactory Spring容器本身   */  public void postProcessBeanFactory(    ConfigurableListableBeanFactory beanFactory)    throws BeansException  {    System.out.println("程序对Spring所做的BeanFactory的初始化没有改变...");    System.out.println("Spring容器是:" + beanFactory);  }}

五 测试类

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容器    // 它会自动注册容器后处理器、Bean后处理器    ApplicationContext ctx = new      ClassPathXmlApplicationContext("beans.xml");    Person p = (Person)ctx.getBean("chinese");    p.useAxe();  }}

六 测试结果

程序对Spring所做的BeanFactory的初始化没有改变...Spring容器是:org.springframework.beans.factory.support.DefaultListableBeanFactory@6a024a67: defining beans [steelAxe,chinese,beanFactoryPostProcessor]; root of factory hierarchySpring实例化依赖bean:SteelAxe实例...Spring实例化主调bean:Chinese实例...Spring执行setName()方法注入依赖关系...正在执行初始化方法 afterPropertiesSet...正在执行初始化方法 init...孙悟空钢斧砍柴真快

上述就是小编为大家分享的Spring中怎么实现容器后处理器操作了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI