1、簡單介紹java
一、init-method方法,初始化bean的時候執行,能夠針對某個具體的bean進行配置。init-method須要在applicationContext.xml配置文檔中bean的定義裏頭寫明。例如:spring
<bean id="TestBean" class="nju.software.xkxt.util.TestBean" init-method="init"></bean>
這樣,當TestBean在初始化的時候會執行TestBean中定義的init方法。服務器
二、afterPropertiesSet方法,初始化bean的時候執行,能夠針對某個具體的bean進行配置。afterPropertiesSet 必須實現 InitializingBean接口。實現 InitializingBean接口必須實現afterPropertiesSet方法。app
三、BeanPostProcessor,針對全部Spring上下文中全部的bean,能夠在配置文檔applicationContext.xml中配置一個BeanPostProcessor,而後對全部的bean進行一個初始化以前和以後的代理。BeanPostProcessor接口中有兩個方法: postProcessBeforeInitialization和postProcessAfterInitialization。 postProcessBeforeInitialization方法在bean初始化以前執行, postProcessAfterInitialization方法在bean初始化以後執行。ide
總之,afterPropertiesSet 和init-method之間的執行順序是afterPropertiesSet 先執行,init-method 後執行。從BeanPostProcessor的做用,能夠看出最早執行的是postProcessBeforeInitialization,而後是afterPropertiesSet,而後是init-method,而後是postProcessAfterInitialization。post
2、相關用法及代碼測試測試
一、PostProcessor類,實現BeanPostProcessor接口,實現接口中的postProcessBeforeInitialization,postProcessAfterInitialization方法this
package nju.software.xkxt.util; import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.BeanPostProcessor; /** * 定義Bean初始化先後的動做 * * @author typ * */ public class PostProcessor implements BeanPostProcessor { @Override public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { System.out.println("------------------------------"); System.out.println("對象" + beanName + "開始實例化"); return bean; } @Override public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { System.out.println("對象" + beanName + "實例化完成"); System.out.println("------------------------------"); return bean; } }
該PostProcessor類要做爲bean定義到applicationContext.xml中,以下spa
<bean class="nju.software.xkxt.util.PostProcessor"></bean>
二、TestBean類,用作測試Bean,觀察該Bean初始化過程當中上面4個方法執行的前後順序和內容。實現InitializingBean接口,而且實現接口中的afterPropertiesSet方法。最後定義做爲init-method的init方法。代理
package nju.software.xkxt.util; import org.springframework.beans.factory.InitializingBean; /** * 用作測試Bean,觀察該Bean初始化過程當中上面4個方法執行的前後順序和內容 * * @author typ * */ public class TestBean implements InitializingBean { String name; public String getName() { return name; } public void setName(String name) { this.name = name; } public void init() { System.out.println("init-method is called"); System.out.println("******************************"); } @Override public void afterPropertiesSet() throws Exception { System.out.println("******************************"); System.out.println("afterPropertiesSet is called"); System.out.println("******************************"); } }
啓動Tomcat服務器,能夠看到服務器啓動過程當中,完成對Bean進行初始化。執行結果以下:
------------------------------
對象TestBean開始實例化
******************************
afterPropertiesSet is called
******************************
init-method is called
******************************
對象TestBean實例化完成
------------------------------