• bean的生命周期

为什么总是一个生命当做一个重点?

Servlet –> servlet生命周期

Java对象生命周期

往往笔试,面试总喜欢问生命周期的问题?

①   实例化(当我们的程序加载beans.xml文件时)把我们的bean(前提是单态的即scope=singleton)实例化到内存

②   调用set方法设置属性

③   如果你实现了bean名字关注接口(BeanNameAware)则,可以通过setBeanName获取id号

④   如果你实现了bean工厂关注接口,则(BeanFactoryAware)则可以获取bean工厂,beanFactory

⑤   如果你实现了ApplicationContextAware接口,则调用方法

public void setApplicationContext(ApplicationContext arg0)

throws BeansException {

// TODO Auto-generated method stub

System.out.println("setApplicationContext"+arg0);

}

⑥   如果bean和一个后置处理器关联了,则会自动去调用Object postProcessBeforeInitialization方法

⑦   了InitializingBean接口,则会调用afterPropertiesSet方法

⑧   如果自己在<bean init-method=”init”>则可以在bean中定义自己的初始化方法

⑨   如果bean和一个后置处理器关联了,则会自动去调用Object postProcessAfterInitialization方法

⑩   使用我们的bean

⑪   容器关闭

⑫   可以通过实现DisposableBean接口来调用方法destroy

⑬   可以在<bean destroy-method=”fun1” /> 调用定制的销毁方法

小结:

我们在实际开发中往往没有用到这么多的过程,常见的过程是

1--2--6-10-9-11

问题:通过BeanFactory来获取bean对象,bean的生命周期是否和Applicationcontext 是一样吗?

不是一样,bean在工厂中创建的生命周期会简单一些

具体

项目结构

beans.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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <bean id="personService" destroy-method="mydestroy" init-method="init" class="com.litao.beanlife.PersonService">
<!-- -这里注入我们属性,前提就是有setName才能OK -->
<property name="name">
<value>xiaoming</value>
</property>
</bean> <bean id="personService2" class="com.litao.beanlife.PersonService">
<!-- -这里注入我们属性,前提就是有setName才能OK -->
<property name="name">
<value>xiaohong</value>
</property>
</bean> <!-- 配置我们自己的后置处理器(有点类似我们的fiter) -->
<bean id="myBeanPostProcessor" class="com.litao.beanlife.MyBeanPostProcessor" /> </beans>

App1.java

package com.litao.beanlife;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.core.io.ClassPathResource; public class App1 { /**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext ac = new ClassPathXmlApplicationContext("com/litao/beanlife/beans.xml");
//BeanFactory factory = new XmlBeanFactory(new ClassPathResource("com/litao/beanlife/beans.xml"));
PersonService ps = (PersonService)ac.getBean("personService");
//PersonService ps = (PersonService)factory.getBean("personService");
ps.sayHi(); } }

MyBeanPostProcessor.java

package com.litao.beanlife;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor; public class MyBeanPostProcessor implements BeanPostProcessor { //arg0就是beans.xml中要被实例的bean对象
public Object postProcessAfterInitialization(Object arg0, String arg1)
throws BeansException {
// TODO Auto-generated method stub
System.out.println("postProcessAfterInitialization函数被调用");
System.out.println(arg0+" 被创建的时间是"+new java.util.Date());
return arg0;
} @Override
public Object postProcessBeforeInitialization(Object arg0, String arg1)
throws BeansException {
// TODO Auto-generated method stub
System.out.println("postProcessBeforeInitialization函数被调用");
return arg0;
} }

PersonService.java

package com.litao.beanlife;

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 PersonService implements BeanNameAware,BeanFactoryAware,ApplicationContextAware,InitializingBean{ private String name; public PersonService(){
System.out.println("PersonService构造函数被调用");
} public PersonService(String abc){
System.out.println("PersonService构造函数被调用");
} public String getName() {
return name;
} public void setName(String name) {
System.out.println("setName(String name)函数被调用");
this.name = name;
} public void sayHi(){
System.out.println("hi "+ name);
} //该方法可以给arg0传送正在被实例化的bean的id是什么
public void setBeanName(String arg0) {
// TODO Auto-generated method stub
System.out.println("setBeanName被调用 值为"+arg0); } //该方法可以传递beanFactory
public void setBeanFactory(BeanFactory arg0) throws BeansException {
// TODO Auto-generated method stub
System.out.println("setBeanFactory "+arg0);
} //该方法传递上下文ApplicationContext
public void setApplicationContext(ApplicationContext arg0)
throws BeansException {
// TODO Auto-generated method stub
System.out.println("setApplicationContext"+arg0);
} public void init(){
System.out.println("我自己的init方法");
} @Override
public void afterPropertiesSet() throws Exception {
// TODO Auto-generated method stub
System.out.println("afterPropertiesSet()");
} //定制我们的销毁方法
public void mydestroy() {
// TODO Auto-generated method stub
//我们可以关闭数据连接,socket,文件流,释放该bean的资源
System.out.println("释放各种资源"); } }

Spring框架学习之第6节的更多相关文章

  1. Spring框架学习之第2节

    传统的方法和使用spring的方法 使用spring,没有new对象,我们把创建对象的任务交给了spring的框架,通过配置用时get一下就行. 项目结构 applicationContext.xml ...

  2. Spring框架学习之第1节

    spring快速入门 ①   spring是什么? Struts是web框架(jsp/action/actionform) hibernate是orm框架(对象和关系映射框架),处于持久层 sprin ...

  3. Spring框架学习之第9节

    aop编程 aop(aspect oriented programming)面向切面(方面)编程,是所有对象或者是一类对象编程,核心是(在不增加代码的基础上,还增加新功能) 汇编(伪机器指令 mov ...

  4. Spring框架学习之第8节

    <bean id=”foo” class=”…Foo”> <property name=”属性”> <!—第一方法引用--> <ref bean=”bean对 ...

  5. Spring框架学习之第3节

    model层(业务层+dao层+持久层) spring开发提倡接口编程,配合di技术可以更好的达到层与层之间的解耦 举例: 现在我们体验一下spring的di配合接口编程,完成一个字母大小写转换的案例 ...

  6. Spring框架学习之第7节

    配置Bean的细节 ☞尽量使用scope=”singleton”,不要使用prototype,因为这样对我们的性能影响较大 ②如何给集合类型注入值 Java中主要的map,set,list / 数组 ...

  7. Spring框架学习之第5节

    request session global-session 三个在web开发中才有意义 如果配置成prototype有点类似于request 如果配置成singleton有点类似于web开发中的gl ...

  8. Spring框架学习之第4节

    从ApplicaionContext应用上下文容器中获取bean和从bean工厂容器中有什么区别: 具体案例如下 结论: 1.如果使用上下文ApplicationContext,则配置的bean如果是 ...

  9. Spring框架学习一

    Spring框架学习,转自http://blog.csdn.net/lishuangzhe7047/article/details/20740209 Spring框架学习(一) 1.什么是Spring ...

随机推荐

  1. Could not resolve placeholder

    使用spring的<context:property-placeholder location="/WEB-INF/redis.properties"/>读取prope ...

  2. AUTH过程

    INITIALIZE UPDATE: 在安全通道的显式发起期间,INITIALIZEUPDATE命令用于在卡和主机之间传送卡和会话数据.这个命令开始一个安全通道会话的发起. CPURESET() // ...

  3. 从Java的角度理解前端框架,nodejs,reactjs,angularjs,requirejs,seajs

    [前端神秘的面纱] 对后端开发来说,前端是神秘的, 眼花缭乱的技术,繁多的框架, 如果你还停留在前端等于只用jquery做开发,那么你out了, 本文从Java的角度简述下目前前端流行的一些框架. 水 ...

  4. cacti手册选译(1)

    第一章 系统需求 Cacti需要你的系统安装一下软件: RRDTool版本1.0.49及以上,推荐1.4+ MYSQL5.x及以上版本 PHP5.1及以上 支持PHP的web Server如Apach ...

  5. Python中的计数(词频)

    1,对于list列表来说 a.用自定义函数来统计技术 def get_count(sequence): counts={} for x in sequence: if x in sequence: c ...

  6. Log4j2 配置笔记(Eclipse+maven+SpringMVC)

    Log4j2相关介绍可以百度看下,这里只注重配置Log4j2 能够马上跑起来: 1.pom.xml文件中添加Log4j2的相关Maven配置信息 <!-- log4j2 --> <d ...

  7. Codeforces Round #FF (Div. 1) A. DZY Loves Sequences

    题目链接: http://www.codeforces.com/contest/446/problem/A 题解: dp1[x]表示以x结尾的最大严格升序连续串,dp2[x]表示以x开头的最大严格升序 ...

  8. IEEE802.11数据帧在Linux上的抓取

    IEEE802.11数据帧在Linux上的抓取终于得到了梦寐的<802.11无线网络权威指南>,虽然是复印版本,看起来也一样舒服,光看书是不行的,关键还是自己练习,这就需要搭建一个舒服的实 ...

  9. bzoj 1015 并查集

    逆向思维,先将整张图以最后所有要求的点毁掉的状态建图,然后倒着 加点就行了,用并查集维护连通块 /*************************************************** ...

  10. 【BZOJ】【1045/1465】【HAOI2008】糖果传递

    思路题/神奇的转化…… orz hzwer 或许这个思路可以从单行而非环形的递推中找到?(单行的时候,从左往右直接递推即可…… 感觉好神奇>_<脑残患者想不出…… P.S.话说在$n\le ...