Spring实战中如何实现容器后处理器示例操作?
- 内容介绍
- 文章标签
- 相关推荐
本文共计764个文字,预计阅读时间需要4分钟。
原文示例改写如下:
原文:本文实例讲述了Spring实战中容器后处理器的应用。分享给广大读者和专家参考,具体如下:一、配置文件+xml version=2.1 encoding=GBKbeans+xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance+xmlns=http://www.springframework.org/schema/beans>
改写后:“本文以实例展示Spring容器后处理器的实际运用。以下为详细内容:一、配置文件设置,具体包括:...
本文实例讲述了Spring实战之容器后处理器。分享给大家供大家参考,具体如下:
一 配置文件
<?xml version="1.0" encoding="GBK"?> <beans xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns="www.springframework.org/schema/beans" xmlns:p="www.springframework.org/schema/p" xsi:schemaLocation="www.springframework.org/schema/beans 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 hierarchy
Spring实例化依赖bean:SteelAxe实例...
Spring实例化主调bean:Chinese实例...
Spring执行setName()方法注入依赖关系...
正在执行初始化方法 afterPropertiesSet...
正在执行初始化方法 init...
孙悟空钢斧砍柴真快
更多关于java相关内容感兴趣的读者可查看本站专题:《Spring框架入门与进阶教程》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》、《Java文件与目录操作技巧汇总》和《Java缓存操作技巧汇总》
希望本文所述对大家java程序设计有所帮助。
本文共计764个文字,预计阅读时间需要4分钟。
原文示例改写如下:
原文:本文实例讲述了Spring实战中容器后处理器的应用。分享给广大读者和专家参考,具体如下:一、配置文件+xml version=2.1 encoding=GBKbeans+xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance+xmlns=http://www.springframework.org/schema/beans>
改写后:“本文以实例展示Spring容器后处理器的实际运用。以下为详细内容:一、配置文件设置,具体包括:...
本文实例讲述了Spring实战之容器后处理器。分享给大家供大家参考,具体如下:
一 配置文件
<?xml version="1.0" encoding="GBK"?> <beans xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns="www.springframework.org/schema/beans" xmlns:p="www.springframework.org/schema/p" xsi:schemaLocation="www.springframework.org/schema/beans 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 hierarchy
Spring实例化依赖bean:SteelAxe实例...
Spring实例化主调bean:Chinese实例...
Spring执行setName()方法注入依赖关系...
正在执行初始化方法 afterPropertiesSet...
正在执行初始化方法 init...
孙悟空钢斧砍柴真快
更多关于java相关内容感兴趣的读者可查看本站专题:《Spring框架入门与进阶教程》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》、《Java文件与目录操作技巧汇总》和《Java缓存操作技巧汇总》
希望本文所述对大家java程序设计有所帮助。

