/**
* @Author quan
* @Date 2020/11/13
* 扩展原理
* BeanPostProcessor bean后置处理器,bean创建对象初始化前后进行拦截工作
*
*
* BeanFactoryPostProcessor BeanFactory后置处理器
* 在BeanFactory标准初始化之后调用,所有的Bean定义已经保存加载到BeanFactory,可以修改订制BeanFactory的内容
* 但是BeanFactory还没帮我们实例化
*
* 1ioc容器创建对象
* 2invokeBeanFactoryPostProcessors(beanFactory)执行BeanFactoryPostProcessor
* 如何拿到所有BeanFactoryPostProcessors 在这个类PostProcessorRegistrationDelegate(invoker入口AbstractApplicationContext)
* String[] postProcessorNames =
* beanFactory.getBeanNamesForType(BeanFactoryPostProcessor.class, true, false);
* 这里取获取所有后置bean的name,然后进行排序
* 1.直接在BeanFactory中找到所有类型是BeanFactoryPostProcessor的组件,并执行他们的方法
* 2.在初始化创建其他组件前执行
*
*
* BeanDefinitionRegistryPostProcessor extends BeanFactoryPostProcessor
* void postProcessBeanDefinitionRegistry
* 指定世纪:看源码注解iiu知道了。在所有Bean定义信息将要被加载的时候,bean实例还未创建的时候
* 比BeanFactoryPostProcessor还要前,
* 利用BeanDefinitionRegistryPostProcessor给容器中添加额外添加一些组件
*
* 原理:
* 1ioc容器创建
* 2refresh()->invokeBeanFactoryPostProcessors(beanFactory);
* 3从容器中获取到所有的BeanDefinitionRegistryPostProcessor AbstractApplicationContext#invokeBeanFactoryPostProcessors实际上执行:PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors
* 4依次触发所有的postProcessBeanDefinitionRegistry invokeBeanDefinitionRegistryPostProcessors(currentRegistryProcessors, registry, beanFactory.getApplicationStartup());
* 5再触发:postProcessBeanFactory实际上是再BeanFactoryPostProcessor
* 6再从容器中找到BeanFactoryPostProcessor组件,返回一次触发postProcessBeanFactory。
*
*
* ApplicationListener:监听容器中发布的时间,事件驱动模型开发
* public interface ApplicationListener<E extends ApplicationEvent> extends EventListener
* 都要监听ApplicationEvent及其下面的子事件:
* 步骤:
* 1下一个监听器来监听某个事件(ApplicationEvent及其子类)
* 2监听器加入到容器
* 3只要容器中有相关事件的发布,我们九年监听到这个事件。
* Spring发布的事件 ContextRefreshedEvent 容器刷新完成(所有Bean都被完全创建),会发布这个事件
* ContextClosedEvent 关闭容器会发布这个事件
* 4发布一个事件:
* applicationContext.publishEvent();
*
* 原理:
* 第一个事件:ContextRefreshedEvent
* 1容器创建 refresh()
* 2finishRefresh容器刷新完成
* 这个方法里面调用了 publishEvent(new ContextRefreshedEvent(this))
* 里面发布流程:
* 1-获取事件的多播器()getApplicationEventMulticaster()
* 2-multicastEvent派发事件
* 3-获取所有的ApplicationListener
* for (ApplicationListener<?> listener : getApplicationListeners(event, type)) {
* 1-如果有Executor 可以支持使用Executor进行异步派发
* Executor executor = getTaskExecutor();
* 2-否则同步执行invokeListener(listener, event);
* 3-拿到Listener回调onApplicationEvent方法listener.onApplicationEvent(event)
* 最后一个事件:ContextCloseEvent
* AbstractApplicationContext#doClose();
*
*
* {事件多播器怎么获取的呢}:
* 1.容器创建对象Refresh:
* 2.AbstractApplicationContext#initApplicationEventMulticaster();初始化事件多播器
* 1-先去BeanFactory里面有没有id=applicationEventMulticaster的Bean
* 2-如果没有就新建一个new SimpleApplicationEventMulticaster(beanFactory),并注册进去:
* beanFactory.registerSingleton(APPLICATION_EVENT_MULTICASTER_BEAN_NAME, this.applicationEventMulticaster);
* 那就可以再其他组件要派发事件,则自动注入即可
*
* {容器有那些监听器}
* 1.容器创建对象Refresh:
* 2.registerListeners();
* 从容器中拿到所有的监听器,
* String[] listenerBeanNames = getBeanNamesForType(ApplicationListener.class, true, false);
* 把他们注册到ApplicationEventMulticaster中
* getApplicationEventMulticaster().addApplicationListenerBean(listenerBeanName);
*
* #另一种是心啊监听器的方法@EventListener
* 原理:
* 1-点进注解里面,看注释可以直到主要工作的市EventListenerMethodProcessor来解析注解
*
* SmartInitializingSingleton原理:---》执行时机afterSingletonsInstantiated
* 1-ioc容器创建对象并refresh
* 2-finishBeanFactoryInitialization 初始化剩下的单实例bean
* 1-其实执行的市DefaultListableBeanFactory#preInstantiateSingletons
* 2-先创建所有的单实例bean,getBean
* 3-获取所有创建好的单实例bean,判断是否是SmartInitializingSingleton类型
* 并执行smartSingleton.afterSingletonsInstantiated();
*/
/**
* @Author quan
* @Date 2020/11/13
* 扩展点=-BeanFactoryPostProcessor
* <p>
* <p>
* * Modify the application context's internal bean factory after its standard
* * initialization. All bean definitions will have been loaded, but no beans
* * will have been instantiated yet. This allows for overriding or adding
* * properties even to eager-initializing beans.
* * @param beanFactory the bean factory used by the application context
* * @throws org.springframework.beans.BeansException in case of errors
*/ @Component
public class MyBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
// System.out.println(" MyBeanFactoryPostProcessor");
int count = beanFactory.getBeanDefinitionCount();
System.out.println("MyBeanFactoryPostProcessor"+count);
String[] names = beanFactory.getBeanDefinitionNames();
System.out.println(Arrays.asList(names));
}
}
/**
* @Author quan
* @Date 2020/11/13
*/
@Component
public class MyBeanDefinitionRegistryPostProcessor implements BeanDefinitionRegistryPostProcessor { //BeanDefinitionRegistry Bean定义信息的保存中心
//BeanFactory都是按照BeanDefinitionRegistry里面保存的每一个Bean定义信息创建Bean的实例
@Override
public void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry) throws BeansException {
System.out.println("MyBeanDefinitionRegistryPostProcessor-postProcessBeanDefinitionRegistry数量" +registry.getBeanDefinitionCount());
// RootBeanDefinition beanDefinition = new RootBeanDefinition(Quan.class);
AbstractBeanDefinition beanDefinition = BeanDefinitionBuilder.rootBeanDefinition(Quan.class).getBeanDefinition();
registry.registerBeanDefinition("quan",beanDefinition);
} @Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
System.out.println("MyBeanDefinitionRegistryPostProcessor-postProcessBeanFactory数量" +beanFactory.getBeanDefinitionCount());
}
}
/**
* @Author quan
* @Date 2020/11/20
*/
@Service
public class MyServiceEventListener { @EventListener(classes = {ApplicationEvent.class})
public void listen(ApplicationEvent event){
System.out.println("EventListener"+event);
}
}
/**
* @Author quan
* @Date 2020/11/18
*/
@Component//需要加载到容器中去
public class MyApplicationListener implements ApplicationListener<ApplicationEvent> {
//当容器发布此事件的时候,方法会得到促发
@Override
public void onApplicationEvent(ApplicationEvent event) {
System.out.println("事件-----"+event);
}
}

spring源码-扩展点的更多相关文章

  1. Spring源码系列 — BeanDefinition扩展点

    前言 前文介绍了Spring Bean的生命周期,也算是XML IOC系列的完结.但是Spring的博大精深,还有很多盲点需要摸索.整合前面的系列文章,从Resource到BeanDefinition ...

  2. Spring源码学习笔记12——总结篇,IOC,Bean的生命周期,三大扩展点

    Spring源码学习笔记12--总结篇,IOC,Bean的生命周期,三大扩展点 参考了Spring 官网文档 https://docs.spring.io/spring-framework/docs/ ...

  3. 【Spring源码分析】Bean加载流程概览

    代码入口 之前写文章都会啰啰嗦嗦一大堆再开始,进入[Spring源码分析]这个板块就直接切入正题了. 很多朋友可能想看Spring源码,但是不知道应当如何入手去看,这个可以理解:Java开发者通常从事 ...

  4. 【Spring源码分析】非懒加载的单例Bean初始化前后的一些操作

    前言 之前两篇文章[Spring源码分析]非懒加载的单例Bean初始化过程(上篇)和[Spring源码分析]非懒加载的单例Bean初始化过程(下篇)比较详细地分析了非懒加载的单例Bean的初始化过程, ...

  5. 框架源码系列六:Spring源码学习之Spring IOC源码学习

    Spring 源码学习过程: 一.搞明白IOC能做什么,是怎么做的  1. 搞明白IOC能做什么? IOC是用为用户创建.管理实例对象的.用户需要实例对象时只需要向IOC容器获取就行了,不用自己去创建 ...

  6. spring源码分析系列 (5) spring BeanFactoryPostProcessor拓展类PropertyPlaceholderConfigurer、PropertySourcesPlaceholderConfigurer解析

    更多文章点击--spring源码分析系列 主要分析内容: 1.拓展类简述: 拓展类使用demo和自定义替换符号 2.继承图UML解析和源码分析 (源码基于spring 5.1.3.RELEASE分析) ...

  7. 【Spring源码分析】Bean加载流程概览(转)

    转载自:https://www.cnblogs.com/xrq730/p/6285358.html 代码入口 之前写文章都会啰啰嗦嗦一大堆再开始,进入[Spring源码分析]这个板块就直接切入正题了. ...

  8. Ioc容器beanDefinition-Spring 源码系列(1)

    Ioc容器beanDefinition-Spring 源码系列(1) 目录: Ioc容器beanDefinition-Spring 源码(1) Ioc容器依赖注入-Spring 源码(2) Ioc容器 ...

  9. Spring源码分析:非懒加载的单例Bean初始化前后的一些操作

    之前两篇文章Spring源码分析:非懒加载的单例Bean初始化过程(上)和Spring源码分析:非懒加载的单例Bean初始化过程(下)比较详细地分析了非懒加载的单例Bean的初始化过程,整个流程始于A ...

随机推荐

  1. 企业BI应用解决方案主要包括哪些方面?

    BI的地位 在实际的BI应用过程中,很多企业对数据分析的概念仅为雏形,且业务人员往往难以了解自身数据分析的需求.这就造成很多BI需求调研在和业务人员沟通的环节,业务人员难以明确需求,这使得BI沦为一个 ...

  2. git子模块的使用

    1. 在项目中添加子模块 命令: git submodule add <url> 例子: git submodule add https://github.com/chaconinc/Db ...

  3. 【C#基础概念】字面量 literal

    一.字面量定义 在计算机科学中,字面量(literal)是用于表达源代码中一个固定值的表示法(notation).几乎所有计算机编程语言都具有对基本值的字面量表示,诸如:整数.浮点数以及字符串:而有很 ...

  4. Pycharm:如果想验证一个文件中的函数

    在该文件的函数后写上两句 def test(): pass if __name__='__main__': test() 这样就可以执行该函数 如果只是在其他文件中导入了该函数,则不会执行最后两段话, ...

  5. (第一章第六部分)TensorFlow框架之实现线性回归小案例

    系列博客链接: (一)TensorFlow框架介绍:https://www.cnblogs.com/kongweisi/p/11038395.html (二)TensorFlow框架之图与Tensor ...

  6. Tableau绘制K线图、布林线、圆环图、雷达图

    Tableau绘制K线图.布林线.圆环图.雷达图 本文首发于博客冰山一树Sankey,去博客浏览效果更好.直接右上角搜索该标题即可 一. K线图 1.1 导入数据源 1.2 拖拽字段 将[日期]托到列 ...

  7. 在pycharm中批量插入表数据、分页原理、cookie和session介绍、django操作cookie

    昨日内容回顾 ajax发送json格式数据 ''' 1. urlencoded 2. form-data 3. json ''' 1. ajax $.ajax({ data: JSON.stringi ...

  8. [ Skill ] load 函数优化,识别相对路径

    https://www.cnblogs.com/yeungchie/ 在 cds.lib 文件中定义库的路径,为了规范库定义的管理,经常这样做: . |-- cds.lib ------------- ...

  9. 【VR游戏】封神榜传

    领悟导入SteamVR和VRTK,SteamVR要和CameraRig位置保持一致.1.可以创建多个scene,然后进行连接跳转.但是创建好之后要自己重新导回scene附:删除MainCamera,添 ...

  10. tp 七牛云文件上传

    1.先创建好七牛云账号和存储空间 申请七牛云账号: 创建七牛云存储空间: 在账号的秘钥管理里面创建秘钥 获取AccessKey / SecretKey: 2.集成PHP-SDK 七牛云开发文档:htt ...