Spring学习笔记之bean生命周期

所属分类: 软件编程 / java 阅读数: 15
收藏 0 赞 0 分享

前言

上一篇文章主要学习了下bean的配置、注入、自定义属性编辑器,今天来熟悉bean的生命周期。

任何一个事物都有自己的生命周期,生命的开始、生命中、生命结束。大家最熟悉的应该是servlet 的生命周期吧。和 servlet 一样 spring bean 也有自己的生命周期。

在开发中生命周期是一个很常见的名词,基本每种编程语言都能找到与它关联的。关于bean的生命周期我在网上也找了好多,基本都差不多。这里我主要是想通过代码来验证,毕竟学的知识都是一样的,都是学的Java,最重要的是动手练习,这样印象更深。

下面是它生命周期的描述,我们通过demo来进行验证。

下图是它执行的顺序。

一、创建LiftCycle类实现BeanFactoryAware,BeanNameAware,InitializingBean,DisposableBean,ApplicationContextAware5个接口方法

package Cuiyw.Spring.Service;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.beans.factory.BeanNameAware;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
public class LifeCycle implements BeanFactoryAware,BeanNameAware,InitializingBean,DisposableBean,ApplicationContextAware{
 
 private String name;
 public String getName() {
 System.out.println("getName name="+name);
 return name;
 }
 public void setName(String name) {
  System.out.println("setName name="+name);
 this.name = name;
 }
 public void afterPropertiesSet() throws Exception {
 // TODO Auto-generated method stub
  System.out.println("InitializingBean.afterPropertiesSet()");
 }
 public void setBeanName(String arg0) {
 // TODO Auto-generated method stub
 System.out.println("BeanNameAware.setBeanName");
 }
 public void setBeanFactory(BeanFactory arg0) throws BeansException {
 // TODO Auto-generated method stub
 System.out.println("BeanFactoryAware.setBeanFactory");
 }
 public void destroy() throws Exception {
 // TODO Auto-generated method stub
 System.out.println("DisposableBean.destroy");
 }
 public void myInit() {
 System.out.println("【init-method】调用<bean>的init-method属性指定的初始化方法");
 }
 public void myDestory() {
 System.out.println("【destroy-method】调用<bean>的destroy-method属性指定的初始化方法");
 }
 public void setApplicationContext(ApplicationContext arg0) throws BeansException {
 // TODO Auto-generated method stub
  System.out.println("ApplicationContextAware.setApplicationContext");
 } 
}

二、注册InstantiationAwareBeanPostProcessor接口

package Cuiyw.Spring.Service;

import java.beans.PropertyDescriptor;

import org.springframework.beans.BeansException;
import org.springframework.beans.PropertyValues;
import org.springframework.beans.factory.config.InstantiationAwareBeanPostProcessor;

public class MyInstantiationAwareBeanPostProcessor implements InstantiationAwareBeanPostProcessor{
 public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
 // TODO Auto-generated method stub
 System.out.println("InstantiationAwareBeanPostProcessor.postProcessAfterInitialization");
 return bean;
 }
 public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
 // TODO Auto-generated method stub
 System.out.println("InstantiationAwareBeanPostProcessor.postProcessBeforeInitialization");
 return bean;
 }
 public boolean postProcessAfterInstantiation(Object bean, String beanName) throws BeansException {
 // TODO Auto-generated method stub
 System.out.println("InstantiationAwareBeanPostProcessor.postProcessAfterInstantiation");
 return true;
 }
 public Object postProcessBeforeInstantiation(Class<?> beanClass, String beanName) throws BeansException {
 // TODO Auto-generated method stub
 System.out.println("InstantiationAwareBeanPostProcessor.postProcessBeforeInstantiation");
 return null;
 }
 public PropertyValues postProcessPropertyValues(PropertyValues pvs, PropertyDescriptor[] pds, Object bean,
  String beanName) throws BeansException {
 // TODO Auto-generated method stub
 System.out.println("InstantiationAwareBeanPostProcessor.postProcessPropertyValues");
 return pvs;
 }
}

三、注册BeanPostProcessor接口

其实InstantiationAwareBeanPostProcessor继承BeanPostProcessor,所以在上面我也实现了BeanPostProcessor接口的方法

package Cuiyw.Spring.Service;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
public class MyBeanPostProcessor implements BeanPostProcessor {
 public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
 // TODO Auto-generated method stub
 System.out.println("BeanPostProcessor.postProcessAfterInitialization ");
 return bean;
 }
 public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
 // TODO Auto-generated method stub
 System.out.println("BeanPostProcessor.postProcessBeforeInitialization");
 return bean;
 }
}

四、注册BeanFactoryPostProcessor接口

package Cuiyw.Spring.Service;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
public class MyBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
 public void postProcessBeanFactory(ConfigurableListableBeanFactory arg0) throws BeansException {
 // TODO Auto-generated method stub
 System.out.println("BeanFactoryPostProcessor.postProcessBeanFactory");
 }
}

五、在上下文中配置

这里还是在上一个博客demo的基础上进行修改,为了有其他干扰,我先把service去掉了。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="beanPostProcessor" class="Cuiyw.Spring.Service.MyBeanPostProcessor"></bean>
<bean id="instantiationAwareBeanPostProcessor" class="Cuiyw.Spring.Service.MyInstantiationAwareBeanPostProcessor"></bean>
<bean id="beanFactoryPostProcessor" class="Cuiyw.Spring.Service.MyBeanFactoryPostProcessor"></bean>
<bean id="lifeCycle" class="Cuiyw.Spring.Service.LifeCycle" init-method="myInit" destroy-method="myDestory">
<property name="name" value="cuiyw1"></property>
</bean>
</beans>

六、在main中使用bean

package Cuiyw.SpringAop;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import Cuiyw.Spring.IService.IService;
import Cuiyw.Spring.Service.LifeCycle;

public class App 
{
 public static void main( String[] args )
 {
 ApplicationContext context=new ClassPathXmlApplicationContext(new String[]{"ApplicationContext.xml"});
 BeanFactory factory=context;
 LifeCycle lifeCycle=factory.getBean("lifeCycle",LifeCycle.class);
 lifeCycle.setName("cuiyw2");
  System.out.println("lifeCycle.name="+lifeCycle.getName());
 ((ClassPathXmlApplicationContext)factory).registerShutdownHook(); 
 /*service=(IService)factory.getBean("ServiceA");
 service.service("Cuiyw ServiceA"); 
 service=(IService)factory.getBean("ServiceImpl");
 service.service("Cuiyw ServiceImpl"); */
 }
}

七、输入打印结果

可以发现输出的顺序和上面图的顺序基本一致。

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

更多精彩内容其他人还在看

Java数据类型的规则

这篇文章主要介绍了Java数据类型的规则的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

Spring整合TimerTask实现定时任务调度

这篇文章主要介绍了Spring整合TimerTask实现定时任务调度的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

详解SpringMVC使用MultipartFile实现文件的上传

本篇文章主要介绍了SpringMVC使用MultipartFile实现文件的上传,本地的文件上传到资源服务器上,比较好的办法就是通过ftp上传。这里是结合SpringMVC+ftp的形式上传的,有兴趣的可以了解一下。
收藏 0 赞 0 分享

SpringMVC上传文件的三种实现方式

本篇文章主要介绍了SpringMVC上传文件的三种实现方式,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

微信公众帐号开发-自定义菜单的创建及菜单事件响应的实例

本篇文章主要介绍了微信公众帐号开发-自定义菜单的创建及菜单事件响应的实例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
收藏 0 赞 0 分享

浅析Java中的继承与组合

本文将介绍组合和继承的概念及区别,并从多方面分析在写代码时如何进行选择。文中通过示例代码介绍的很详细,有需要的朋友可以参考借鉴,下面来一起看看吧。
收藏 0 赞 0 分享

利用反射获取Java类中的静态变量名及变量值的简单实例

下面小编就为大家带来一篇利用反射获取Java类中的静态变量名及变量值的简单实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

java启动线程的3种方式对比分析

这篇文章主要为大家对比分析了java启动线程的3种方式,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

SpringMVC上传和解析Excel方法

这篇文章主要介绍了SpringMVC上传和解析Excel方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

JAVA中String类与StringBuffer类的区别

这篇文章主要为大家详细介绍了JAVA中String类与StringBuffer类的区别,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享
查看更多