spring中bean初始化過程
在傳統的Java應用中,Bean的生命週期非常簡單。Java的關鍵詞new用來例項化Bean(或許他是非序列化的)。這樣就夠用了。相反,Bean 的生命週期在Spring容器中更加細緻。理解Spring Bean的生命週期非常重要,因為你或許要利用Spring提供的機會來訂製Bean的建立過程。
1. 容器尋找Bean的定義資訊並且將其例項化。
2.受用依賴注入,Spring按照Bean定義資訊配置Bean的所有屬性。
3.如果Bean實現了BeanNameAware介面,工廠呼叫Bean的setBeanName()方法傳遞Bean的ID。
4.如果Bean實現了BeanFactoryAware介面,工廠呼叫setBeanFactory()方法傳入工廠自身。
5.如果BeanPostProcessor和Bean關聯,那麼它們的postProcessBeforeInitialzation()方法將被呼叫。
6.如果Bean指定了init-method方法,它將被呼叫。
7.最後,如果有BeanPsotProcessor和Bean關聯,那麼它們的postProcessAfterInitialization()方法將被呼叫。
到這個時候,Bean已經可以被應用系統使用了,並且將被保留在Bean Factory中知道它不再需要。有兩種方法可以把它從Bean Factory中刪除掉。
1.如果Bean實現了DisposableBean介面,destory()方法被呼叫。
2.如果指定了訂製的銷燬方法,就呼叫這個方法。
Bean在Spring應用上下文的生命週期與在Bean工廠中的生命週期只有一點不同,唯一不同的是,如果Bean實現了ApplicationContextAwre介面,setApplicationContext()方法被呼叫。
1. 容器尋找Bean的定義資訊並且將其例項化。
2. 受用依賴注入,Spring按照Bean定義資訊配置Bean的所有屬性。
3. 如果Bean實現了BeanNameAware介面,工廠呼叫Bean的setBeanName()方法傳遞Bean的ID。
4. 如果Bean實現了BeanFactoryAware介面,工廠呼叫setBeanFactory()方法傳入工廠自身。
5. 如果BeanPostProcessor和Bean關聯,那麼它們的postProcessBeforeInitialzation()方法將被呼叫。
6. 如果Bean指定了init-method方法,它將被呼叫。
7. 最後,如果有BeanPsotProcessor和Bean關聯,那麼它們的postProcessAfterInitialization()方法將被呼叫。
到這個時候,Bean已經可以被應用系統使用了,並且將被保留在Bean Factory中知道它不再需要。有兩種方法可以把它從Bean Factory中刪除掉。
1.如果Bean實現了DisposableBean介面,destory()方法被呼叫。
2.如果指定了訂製的銷燬方法,就呼叫這個方法。
Bean在Spring應用上下文的生命週期與在Bean工廠中的生命週期只有一點不同,唯一不同的是,如果Bean實現了ApplicationContextAwre介面,setApplicationContext()方法被呼叫。
舉例:(這裡只是演示Bean工廠的例子)
1.HelloWorld.java
- package com.spring.lifecycle;
- 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.beans.factory.config.BeanPostProcessor;
- publicclass HelloWorld implements BeanNameAware,BeanFactoryAware, BeanPostProcessor,InitializingBean,DisposableBean{
- private String hello;
- publicvoid setBeanName(String arg0) {
- System.out.println("呼叫BeanNameAware的setBeanName()..." );
- }
- public String getHello() {
- return hello;
- }
- publicvoid setHello(String hello) {
- this.hello = hello;
- System.out.println("呼叫setHello()..." );
- }
- publicvoid customInit() {
- System.out.println("呼叫customInit()...");
- }
- publicvoid customDestroy() {
- System.out.println("呼叫customDestroy()...");
- }
- public Object postProcessAfterInitialization(Object arg0, String arg1)
- throws BeansException {
- System.out.println("呼叫BeanPostProcessor的postProcessAfterInitialization()...");
- returnnull;
- }
- public Object postProcessBeforeInitialization(Object arg0, String arg1)
- throws BeansException {
- System.out.println("呼叫BeanPostProcessor的postProcessBeforeInitialization()...");
- returnnull;
- }
- publicvoid destroy() throws Exception {
- System.out.println("呼叫DisposableBean的destory()...");
- }
- publicvoid afterPropertiesSet() throws Exception {
- System.out.println("呼叫InitializingBean的afterPropertiesSet()...");
- }
- publicvoid setBeanFactory(BeanFactory arg0) throws BeansException {
- System.out.println("呼叫BeanFactoryAware的setBeanFactory()...");
- }
- }
2.測試程式
Java程式碼- package com.spring.springtest;
- import junit.framework.TestCase;
- import org.springframework.beans.factory.BeanFactory;
- import org.springframework.context.support.ClassPathXmlApplicationContext;
- import com.spring.lifecycle.HelloWorld;
- publicclass TestLifeCycle extends TestCase {
- private BeanFactory bf;
- protectedvoid setUp() throws Exception {
- bf = new ClassPathXmlApplicationContext("applicationContext.xml");
- }
- publicvoid testLifeCycle() throws Exception {
- HelloWorld hello = (HelloWorld) bf.getBean("helloWorld");
- assertEquals("hello world!", hello.getHello());
- hello.destroy();
- }
- }
3.applicationContext.xml
Xml程式碼- <?xmlversion="1.0"encoding="UTF-8"?>
- <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
- <beans>
- <beanid="helloWorld"class="com.spring.lifecycle.HelloWorld"
- init-method="customInit"destroy-method="customDestroy">
- <propertyname="hello"value="hello world!"></property>
- </bean>
- </beans>
4.執行結果:
引用 呼叫setHello()...呼叫BeanNameAware的setBeanName()...
呼叫BeanFactoryAware的setBeanFactory()...
呼叫InitializingBean的afterPropertiesSet()...
呼叫customInit()...
呼叫DisposableBean的destory()...