国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

Spring中bean的初始化和銷毀幾種實現方式詳解

瀏覽:13日期:2023-08-03 17:45:50

Bean的生命周期 : 創建bean對象 ? 屬性賦值 ? 初始化方法調用前的操作 ? 初始化方法 ? 初始化方法調用后的操作 ? …-- 銷毀前操作 ? 銷毀方法的調用。

【1】init-method和destroy-method

自定義初始化方法和銷毀方法兩種方式:xml配置和注解。

① xml配置

<bean scope='singleton' init-method='init' destroy-method='cleanUp' autowire='byName' lazy-init='true' > </bean>

② 注解配置

@Scope('singleton') @Lazy @Bean(name='person',initMethod='init',destroyMethod='cleanUp', autowire=Autowire.BY_NAME) public Person person01(){ return new Person('lisi', 20); }

單實例bean在容器創建完成前會進行創建并初始化,在容器銷毀的時候進行銷毀。多實例bean(scope=prototype)在第一次獲取該bean實例時才會創建并初始化,且容器不負責該bean的銷毀。

【2】InitializingBean 和DisposableBean

InitializingBean 接口:

public interface InitializingBean {void afterPropertiesSet() throws Exception;}

在BeanFactory設置完bean屬性后執行

需要被bean實現的接口,一旦bean的屬性被BeanFactory設置后需要做出反應: 如,執行自定義初始化,或者僅僅是檢查是否設置了所有強制屬性。

實現InitializingBean 的可替代方式為給bean指定一個自定義的init-method,例如在一個xml bean 定義中。

在bean的屬性設置之后進行操作,不返回任何值但是允許拋出異常。

DisposableBean接口:

public interface DisposableBean {void destroy() throws Exception;}

被bean實現的接口,在銷毀時釋放資源,在Bean銷毀的時候調用該方法。

如果銷毀一個緩存的單例,一個BeanFactory 可能會調用這個銷毀方法。

在容器關閉時,應用上下文會銷毀所有的單例bean。

一種替代實現DisposableBean 接口的方案為指定一個自定義的destroy-method方法,例如在一個xml bean定義中。

自定義bean實現上述兩個接口

@Componentpublic class Cat implements InitializingBean,DisposableBean {public Cat(){System.out.println('cat constructor...');}@Overridepublic void destroy() throws Exception {// TODO Auto-generated method stubSystem.out.println('cat...destroy...');}@Overridepublic void afterPropertiesSet() throws Exception {// TODO Auto-generated method stubSystem.out.println('cat...afterPropertiesSet...');}}

測試結果

cat constructor...cat...afterPropertiesSet...容器創建完成...四月 08, 2018 6:35:46 下午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@11028347: startup date [Sun Apr 08 18:35:46 CST 2018]; root of context hierarchycat...destroy...

【3】@PostConstruct和@PreDestroy

使用JSR250規范定義的兩個注解:

@PostConstruct: PostConstruct注解作用在方法上,在依賴注入完成后進行一些初始化操作。這個方法在類被放入service之前被調用,所有支持依賴項注入的類都必須支持此注解。

@PreDestroy:在容器銷毀bean之前通知我們進行清理工作

自定義類使用上述兩個注解

@Componentpublic class Dog implements ApplicationContextAware {//@Autowiredprivate ApplicationContext applicationContext;public Dog(){System.out.println('dog constructor...');}//對象創建并賦值之后調用@PostConstructpublic void init(){System.out.println('Dog....@PostConstruct...');}//容器移除對象之前@PreDestroypublic void detory(){System.out.println('Dog....@PreDestroy...');}@Overridepublic void setApplicationContext(ApplicationContext applicationContext) throws BeansException {// TODO Auto-generated method stubthis.applicationContext = applicationContext;}}

測試結果如下

dog constructor...Dog....@PostConstruct...容器創建完成...四月 08, 2018 6:42:11 下午 org.springframework.context.annotation.AnnotationConfigApplicationContext doClose信息: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@11028347: startup date [Sun Apr 08 18:42:10 CST 2018]; root of context hierarchyDog....@PreDestroy...

【4】BeanPostProcessor-Bean后置處理器

① 什么是bean后置處理器

在bean初始化前后進行一些處理工作

postProcessBeforeInitialization:在初始化之前工作 postProcessAfterInitialization:在初始化之后工作

其接口源碼如下:

public interface BeanPostProcessor {Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException;Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException;}

自定義MyBeanPostProcessor實現該接口:

/** * 后置處理器:初始化前后進行處理工作 * 將后置處理器加入到容器中 * @author lfy */@Componentpublic class MyBeanPostProcessor implements BeanPostProcessor {@Overridepublic Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {// TODO Auto-generated method stubSystem.out.println('BeanPostProcessor.postProcessBeforeInitialization...'+beanName+'=>'+bean);return bean;}@Overridepublic Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {// TODO Auto-generated method stubSystem.out.println('BeanPostProcessor.postProcessAfterInitialization...'+beanName+'=>'+bean);return bean;}}

② BeanPostProcessor原理

AbstractAutowireCapableBeanFactory中關于bean和BeanPostProcessor執行次序由上到下

//給bean進行屬性賦值populateBean(beanName, mbd, instanceWrapper);//然后調用initializeBean方法Object initializeBean(final String beanName, final Object bean, RootBeanDefinition mbd){applyBeanPostProcessorsBeforeInitialization(wrappedBean, beanName);//執行自定義初始化invokeInitMethods(beanName, wrappedBean, mbd);applyBeanPostProcessorsAfterInitialization(wrappedBean, beanName);}

AbstractAutowireCapableBeanFactory.initializeBean源碼如下:

protected Object initializeBean(final String beanName, final Object bean, RootBeanDefinition mbd) {if (System.getSecurityManager() != null) {AccessController.doPrivileged(new PrivilegedAction<Object>() {@Overridepublic Object run() {invokeAwareMethods(beanName, bean);return null;}}, getAccessControlContext());}else {//調用意識/通知方法invokeAwareMethods(beanName, bean);}Object wrappedBean = bean;if (mbd == null || !mbd.isSynthetic()) {//調用bean后置處理器的前置方法wrappedBean = applyBeanPostProcessorsBeforeInitialization(wrappedBean, beanName);}//調用初始化方法try {invokeInitMethods(beanName, wrappedBean, mbd);}catch (Throwable ex) {throw new BeanCreationException((mbd != null ? mbd.getResourceDescription() : null),beanName, 'Invocation of init method failed', ex);}if (mbd == null || !mbd.isSynthetic()) {////調用bean后置處理器的后置方法wrappedBean = applyBeanPostProcessorsAfterInitialization(wrappedBean, beanName);}return wrappedBean;}

AbstractAutowireCapableBeanFactory.invokeInitMethods方法源碼如下:

protected void invokeInitMethods(String beanName, final Object bean, RootBeanDefinition mbd)throws Throwable {boolean isInitializingBean = (bean instanceof InitializingBean);if (isInitializingBean && (mbd == null || !mbd.isExternallyManagedInitMethod('afterPropertiesSet'))) {if (logger.isDebugEnabled()) {logger.debug('Invoking afterPropertiesSet() on bean with name ’' + beanName + '’');}//調用InitializingBean.afterPropertiesSetif (System.getSecurityManager() != null) {try {AccessController.doPrivileged(new PrivilegedExceptionAction<Object>() {@Overridepublic Object run() throws Exception {((InitializingBean) bean).afterPropertiesSet();return null;}}, getAccessControlContext());}catch (PrivilegedActionException pae) {throw pae.getException();}}else {((InitializingBean) bean).afterPropertiesSet();}}//調用自定義初始化方法if (mbd != null) {String initMethodName = mbd.getInitMethodName();if (initMethodName != null && !(isInitializingBean && 'afterPropertiesSet'.equals(initMethodName)) &&!mbd.isExternallyManagedInitMethod(initMethodName)) {invokeCustomInitMethod(beanName, bean, mbd);}}}

【5】Spring底層使用BeanPostProcessor

Spring框架底層存在大量BeanPostProcessor,如下圖:

Spring中bean的初始化和銷毀幾種實現方式詳解

示例一 :BeanValidationPostProcessor是處理bean校驗

其Javadoc如下:

/** * Simple {@link BeanPostProcessor} that checks JSR-303 constraint annotations * in Spring-managed beans, throwing an initialization exception in case of * constraint violations right before calling the bean’s init method (if any). * * @author Juergen Hoeller * @since 3.0 */public class BeanValidationPostProcessor implements BeanPostProcessor, InitializingBean {private Validator validator;private boolean afterInitialization = false;//...}

示例二:ApplicationContextAwareProcessor幫助獲取容器上下文

其Javadoc如下:

/** * {@link org.springframework.beans.factory.config.BeanPostProcessor} * implementation that passes the ApplicationContext to beans that * implement the {@link EnvironmentAware}, {@link EmbeddedValueResolverAware}, * {@link ResourceLoaderAware}, {@link ApplicationEventPublisherAware}, * {@link MessageSourceAware} and/or {@link ApplicationContextAware} interfaces. * * <p>Implemented interfaces are satisfied in order of their mention above. * * <p>Application contexts will automatically register this with their * underlying bean factory. Applications do not use this directly. * * @author Juergen Hoeller * @author Costin Leau * @author Chris Beams * @since 10.10.2003 * @see org.springframework.context.EnvironmentAware * @see org.springframework.context.EmbeddedValueResolverAware * @see org.springframework.context.ResourceLoaderAware * @see org.springframework.context.ApplicationEventPublisherAware * @see org.springframework.context.MessageSourceAware * @see org.springframework.context.ApplicationContextAware * @see org.springframework.context.support.AbstractApplicationContext#refresh() */class ApplicationContextAwareProcessor implements BeanPostProcessor {private final ConfigurableApplicationContext applicationContext;private final StringValueResolver embeddedValueResolver;//...}

如【3】中的dog類為例,其debug示意圖如下:

Spring中bean的初始化和銷毀幾種實現方式詳解

【6】初始化和銷毀方式測試

① 如果一個bean 綜合應用下面六種種方式,執行順序會怎樣呢

Bean類如下:

public class Person implements InitializingBean,DisposableBean { private String name; private Integer age=1; public Person(String name, Integer age) { this.name = name; this.age = age; System.out.println('Person(String name, Integer age) constructor'+this); } public Person() { super(); System.out.println('Person() constructor'+age); } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public String toString() { return 'Person{' +'name=’' + name + ’’’ +', age=' + age +’}’; }// 自定義init方法 public void init(){ System.out.println('-----Person.init()-----'+this); } // 自定義銷毀方法 public void cleanUp(){ System.out.println('-----Person.cleanUp()-----'+this); }// InitializingBean的實現方法 @Override public void afterPropertiesSet() throws Exception { System.out.println('-----InitializingBean.afterPropertiesSet()-----'+this); }//DisposableBean 的實現方法 @Override public void destroy() throws Exception { System.out.println('-----DisposableBean.destroy()-----'+this); } //對象創建并賦值之后調用 @PostConstruct public void init2(){ System.out.println('-----@PostConstruct-----'+this); } //容器移除對象之前 @PreDestroy public void destory2(){ System.out.println('-----@PreDestroy-----'+this); }}

配置類如下:

public class Person implements InitializingBean,DisposableBean { private String name; private Integer age=1; public Person(String name, Integer age) { this.name = name; this.age = age; System.out.println('Person(String name, Integer age) constructor'+this); } public Person() { super(); System.out.println('Person() constructor'+age); } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public String toString() { return 'Person{' +'name=’' + name + ’’’ +', age=' + age +’}’; }// 自定義init方法 public void init(){ System.out.println('-----Person.init()-----'+this); } // 自定義銷毀方法 public void cleanUp(){ System.out.println('-----Person.cleanUp()-----'+this); }// InitializingBean的實現方法 @Override public void afterPropertiesSet() throws Exception { System.out.println('-----InitializingBean.afterPropertiesSet()-----'+this); }//DisposableBean 的實現方法 @Override public void destroy() throws Exception { System.out.println('-----DisposableBean.destroy()-----'+this); } //對象創建并賦值之后調用 @PostConstruct public void init2(){ System.out.println('-----@PostConstruct-----'+this); } //容器移除對象之前 @PreDestroy public void destory2(){ System.out.println('-----@PreDestroy-----'+this); }}

測試結果如下:

// 創建并初始化Person(String name, Integer age) constructorPerson{name=’lisi’, age=20}-----@PostConstruct-----Person{name=’lisi’, age=20}-----InitializingBean.afterPropertiesSet()-----Person{name=’lisi’, age=20}-----Person.init()-----Person{name=’lisi’, age=20}//容器將要銷毀-----@PreDestroy-----Person{name=’lisi’, age=20}-----DisposableBean.destroy()-----Person{name=’lisi’, age=20}-----Person.cleanUp()-----Person{name=’lisi’, age=20}

即,最先使用bean的構造器為bean屬性賦值,接著JSR250規范定義的兩個注解,其次是InitializingBean和DisposableBean接口,最后才是我們自定義的初始化方法和銷毀方法。注意,這里還沒有引入BeanPostProcessor。

② 在①的基礎上添加BeanPostProcessor

實例化bean并進行初始化

//調用構造方法Person(String name, Integer age) constructorPerson{name=’lisi’, age=20}//bean初始化前BeanPostProcessor.postProcessBeforeInitialization...person=>Person{name=’lisi’, age=20}//初始化操作-----@PostConstruct-----Person{name=’lisi’, age=20}-----InitializingBean.afterPropertiesSet()-----Person{name=’lisi’, age=20}-----Person.init()-----Person{name=’lisi’, age=20}//bean初始化后操作BeanPostProcessor.postProcessAfterInitialization...person=>Person{name=’lisi’, age=20}

過程如下:類構造函數-->BeanPostProcessor-->@PostConstruct-->InitializingBean-->init()-->BeanPostProcessor

銷毀bean

-----@PreDestroy-----Person{name=’lisi’, age=20}-----DisposableBean.destroy()-----Person{name=’lisi’, age=20}-----Person.cleanUp()-----Person{name=’lisi’, age=20}

完整圖示如下(同顏色的說明相對應):

Spring中bean的初始化和銷毀幾種實現方式詳解

在調用bean的構造函數時會根據入參為bean屬性賦值,如果入參為空則會給bean屬性賦予默認值,引用類型為null,基本類型比如int為0。

【7】 @Autowired注解的值何時放入?

如下所示,redisTemplate這個依賴何時被容器注入到RedisController中?

Spring中bean的初始化和銷毀幾種實現方式詳解

通過上面分析可知,依賴注入是在@PostConstruct注解的方法調用前被完成的(在populateBean()方法中被注入):

Spring中bean的初始化和銷毀幾種實現方式詳解

那么具體什么時候哪個類完成的 @Autowired注解注入依賴呢?

在類被實例化后由BeanPostProcessor完成的,哪個BeanPostProcessor?

具體是由AutowiredAnnotationBeanPostProcessor 完成的:

Spring中bean的初始化和銷毀幾種實現方式詳解

到此這篇關于Spring中bean的初始化和銷毀幾種實現方式詳解的文章就介紹到這了,更多相關Spring中bean初始化和銷毀內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Spring
相關文章:
主站蜘蛛池模板: 国产日产精品_国产精品毛片 | 亚洲国产天堂久久综合图区 | 久久久久久久99久久久毒国产 | 国产男女交性视频播放免费bd | 中文字幕一二区 | 自拍视频网 | 偷自拍 | 日韩二区三区 | 精品96在线观看影院 | 综合久久久久久中文字幕 | 日韩美三级 | 国产精品久久久久影院色老大 | 国产一区曰韩二区欧美三区 | 国产三级a三级三级三级 | 污美女网站www在线观看 | 欧美xxxwww| 黄 色 三 级 网站 | 免费一级特黄 | 亚洲欧美精品一区天堂久久 | 91在线免费观看网站 | 天堂一区二区三区精品 | 在线成人亚洲 | 三级免费网站 | 怡红院免费的全部视频 | 欧美日韩亚洲第一页 | 亚洲国产一成人久久精品 | 国产精品色午夜视频免费看 | 久久的精品99精品66 | 99久久国产免费中文无字幕 | 一道精品视频一区二区三区图片 | 欧美一区二区三区在线观看 | 国产美女操 | 久久夜色精品国产噜噜亚洲a | 中文字幕乱码系列免费 | 美女福利视频国产片 | 欧美色视频日本片高清在线观看 | 91久久精品国产91久久性色也 | 亚洲综合网在线观看首页 | a毛片视频免费观看影院 | 国产综合在线视频 | 免费观看性欧美一级 |