前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Spring5源码 - 14 如何在所有Bean创建完后做扩展?

Spring5源码 - 14 如何在所有Bean创建完后做扩展?

作者头像
小小工匠
发布2021-08-17 16:00:00
5790
发布2021-08-17 16:00:00
举报
文章被收录于专栏:小工匠聊架构


葛大爷的问题


Answer

想要回答这个问题,就要对Spring的生命周期有一定的了解,今天我们就来回顾一下IOC的生命周期及Spring提供给开发人员的扩展点,当然了,我们今天只聊Bean加载完成后的事儿 。

老规矩 先应用后源码 ,开搞~

AAA BBB CCC 均是spring管理的bean

代码语言:javascript
复制
@Component
public class AAA {
	
	public AAA() {
		System.out.println("AAA init");
	}
}

方式一 基于SmartInitializingSingleton接口

Source

生命周期中倒数第二步

代码语言:javascript
复制
// Instantiate all remaining (non-lazy-init) singletons.
 finishBeanFactoryInitialization(beanFactory);

SmartInitializingSingleton接口是在所有的Bean实例化完成以后,Spring回调的方法, 所以这里也是一个扩展点,可以在单例bean全部完成实例化以后做处理。


Code

【配置类】

代码语言:javascript
复制
package com.artisan.beanLoadedExtend.smartinit;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan("com.artisan.beanLoadedExtend")
public class SmartInitConfig {


}

【扩展类 implements SmartInitializingSingleton 】

代码语言:javascript
复制
package com.artisan.beanLoadedExtend.smartinit;


import org.springframework.beans.factory.SmartInitializingSingleton;
import org.springframework.stereotype.Component;


@Component
public class SmartInitExtend implements SmartInitializingSingleton {

	@Override
	public void afterSingletonsInstantiated() {
		System.out.println("all singleton beans loaded , 自定义扩展here ");
	}
}

【测试】

代码语言:javascript
复制
package com.artisan.beanLoadedExtend.smartinit;


import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Test {

	public static void main(String[] args) {
		AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(SmartInitConfig.class);


	}
}

方式二 基于Spring事件监听

Source

生命周期的最后一步是finishRefresh();,这里面中有一个方法是publishEvent

所以这里也可以进行扩展,监听ContextRefreshedEvent事件 。


Code

【配置类】

代码语言:javascript
复制
package com.artisan.beanLoadedExtend.listener;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan("com.artisan.beanLoadedExtend")
public class Config {
}

【基于接口的方式】

代码语言:javascript
复制
package com.artisan.beanLoadedExtend.listener;

import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;

@Component
public class BeanLoadedExtendListener implements ApplicationListener<ContextRefreshedEvent> {
	@Override
	public void onApplicationEvent(ContextRefreshedEvent event) {

		System.out.println("监听到ContextRefreshedEvent, 自定义扩展here ");


	}
}

【基于注解的方式】

代码语言:javascript
复制
package com.artisan.beanLoadedExtend.listener;


import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.context.event.EventListener;
import org.springframework.stereotype.Component;

@Component
public class BeanLoadedExtendListenerByAnno  {

	@EventListener(ContextRefreshedEvent.class)
	public void extend(){
		System.out.println("基于@EventListener的监听");
	}
}

二选一,推荐基于注解的方式


【测试】

代码语言:javascript
复制
package com.artisan.beanLoadedExtend.listener;


import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Test {

	public static void main(String[] args) {
		AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(Config.class);
	}


}

验证

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/10/31 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 葛大爷的问题
  • Answer
    • 方式一 基于SmartInitializingSingleton接口
      • Source
      • Code
    • 方式二 基于Spring事件监听
      • Source
      • Code
  • 验证
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档