答:

1l Bean容器找到配置文件中SpringBean的定义。

2l Bean容器利用JavaReflectionAPI创建一个Bean的实例。

3l 如果涉及到一些属性值利用set()方法设置一些属性值。

4l 如果Bean实现了BeanNameAware接口,调用setBeanName()方法,传入Bean的名字。

5l如果Bean实现了BeanClassLoaderAware接口,调用setBeanClassLoader()方法,传入ClassLoader对象的实例。

6l 如果Bean实现了BeanFactoryAware接口,调用setBeanClassLoader()方法,传入ClassLoader对象的实例。

7l 与上面的类似,如果实现了其他*.Aware接口,就调用相应的方法。

8l 如果有和加载这个Bean的Spring容器相关的BeanPostProcessor对象,执行postProcessBeforeInitialization()方法。

9l 如果Bean实现了InitializingBean接口,执行afterPropertiesSet()方法。

10l 如果Bean在配置文件中的定义包含init-method属性,执行指定的方法。

11l 如果有和加载这个Bean的Spring容器相关的BeanPostProcessor对象,执行postProcessAfterInitialization()方法。

12l 当要销毁Bean的时候,如果Bean实现了DisposableBean接口,执行destroy()方法。

13l 当要销毁Bean的时候,如果Bean在配置文件中的定义包含destroy-method属性,执行指定的方法。