目录
Servlet的生命周期:
初始化:init ——>Tomcat启动,Servlet对象就创建/初始化了
服务:service——>浏览器发送请求,对应的Servlet进行处理调用
销毁:destroy——>Tomcat停止
通过XML、Java annotation(注解)以及Java Configuration(配置类)
等方式加载Spring Bean
解析Bean的定义。在Spring容器启动过程中,
会将Bean解析成Spring内部的BeanDefinition结构
理解为:将spring.xml中的
标签转换成BeanDefinition结构 有点类似于XML解析
包含了很多属性和方法。例如:id、class(类名)、
scope、ref(依赖的bean)等等。其实就是将bean(例如
)的定义信息 存储到这个对应BeanDefinition相应的属性中
是Spring容器功能的扩展接口。
(1)
BeanFactoryPostProcessor在spring容器加载完BeanDefinition之后,
在bean实例化之前执行的
(2)
对bean元数据(BeanDefinition)进行加工处理,也就是BeanDefinition
属性填充、修改等操作
bean工厂。它按照我们的要求生产我们需要的各种各样的bean。
BeanFactory -> List
BeanDefinition(id/class/scope/init-method)
foreach(BeanDefinition bean : List
){ //根据class属性反射机制实例化对象
//反射赋值设置属性
在实际开发中,经常需要用到Spring容器本身的功能资源
例如:BeanNameAware、ApplicationContextAware等等
BeanDefinition 实现了 BeanNameAware、ApplicationContextAware
后置处理器。在Bean对象实例化和引入注入完毕后,在显示调用初始化方法的前后添加自定义的逻辑。(类似于AOP的绕环通知)
单例时,容器销毁instanceFactory对象也销毁;
单例模式下Javabean的生命周期:容器生对象生,容器死对象死
补充:当配置文件中没有scope=“”时默认就是单例,当scope=“prototype”中填写的是
prototype就是原型的模式(多例模式)但是Spring容器中默认的是单例singleton
多例时,容器销毁对象不一定销毁;
多例模式下Javabean的生命周期:使用时对象生,死亡跟着JVM垃圾回收站机制走
bean的初始化时间点,除了与bean管理模式(单例/多例)有关,还跟beanfactor的子类有关
为了印证BeanPostProcessor 初始化Javabean
- package com.zjy.beanLife;
- /**
- * 为了印证BeanPostProcessor 初始化Javabean
- * @ 朱佳音
- *
- */
- public class InstanceFactory {
- public void init() {
- System.out.println("初始化方法");
- }
-
- public void destroy() {
- System.out.println("销毁方法");
- }
-
- public void service() {
- System.out.println("业务方法");
- }
- }
为了印证单例、多例模式的区别
- package com.zjy.beanLife;
-
- import java.util.List;
-
- /**
- * 为了印证单例、多例模式的区别
- * 小朱
- *
- */
- public class ParamAction {
- private int age;
- private String name;
- private List
hobby; - private int num = 1;
- // private UserBiz userBiz = new UserBizImpl1();
-
- public ParamAction() {
- super();
- }
-
- public ParamAction(int age, String name, List
hobby) { - super();
- this.age = age;
- this.name = name;
- this.hobby = hobby;
- }
-
- public void execute() {
- // userBiz.upload();
- // userBiz = new UserBizImpl2();
- System.out.println("this.num=" + this.num++);
- System.out.println(this.name);
- System.out.println(this.age);
- System.out.println(this.hobby);
- }
- }
- <bean id="paramAction" class="com.zking.beanLife.ParamAction">
- <constructor-arg name="name" value="三丰">constructor-arg>
- <constructor-arg name="age" value="21">constructor-arg>
- <constructor-arg name="hobby">
- <list>
- <value>抽烟value>
- <value>烫头value>
- <value>大保健value>
- list>
- constructor-arg>
- bean>
-
- <bean id="instanceFactory" class="com.zking.beanLife.InstanceFactory"
- scope="prototype" init-method="init" destroy-method="destroy">bean>