• spring框架源码十五、BeanFactory创建子流程


    refresh()方法标志着spring容器启动过程开始,

    它主要做两件事:
    创建工厂、实例化bean对象。

    ClassPathXmlApplicationContext
    在这里插入图片描述
    ClassPathXmlApplicationContext#ClassPathXmlApplicationContext(java.lang.String)
    在这里插入图片描述
    ClassPathXmlApplicationContext#ClassPathXmlApplicationContext(java.lang.String[], boolean, org.springframework.context.ApplicationContext)
    在这里插入图片描述
    AbstractApplicationContext#refresh
    在这里插入图片描述

    BeanFactory创建子流程

    AbstractApplicationContext#obtainFreshBeanFactory

    // 获取BeanFactory
    // 加载BeanDefinition并注册到BeanDefinitionRegistry去
    // Tell the subclass to refresh the internal bean factory.
    ConfigurableListableBeanFactory beanFactory = obtainFreshBeanFactory();
    
    
    • 1
    • 2
    • 3
    • 4
    • 5

    获取BeanFactory

    在这里插入图片描述
    在这里插入图片描述

    	/**
    	 * This implementation performs an actual refresh of this context's underlying
    	 * bean factory, shutting down the previous bean factory (if any) and
    	 * initializing a fresh bean factory for the next phase of the context's lifecycle.
    	 */
    	@Override
    	protected final void refreshBeanFactory() throws BeansException {
    		// 判断是否有BeanFactory
    		if (hasBeanFactory()) {
    			// 销毁Beans
    			destroyBeans();
    			// 关闭BeanFactory
    			closeBeanFactory();
    		}
    		try {
    			// 实例化DefaultListableBeanFactory
    			DefaultListableBeanFactory beanFactory = createBeanFactory();
    			// 设置序列化ID
    			beanFactory.setSerializationId(getId());
    			// 定义BeanFactory的一些属性(是否允许覆盖、是否允许循环依赖)
    			customizeBeanFactory(beanFactory);
    			// ## 加载BeanDefinitions
    			loadBeanDefinitions(beanFactory);
    			this.beanFactory = beanFactory;
    		}
    		catch (IOException ex) {
    			throw new ApplicationContextException("I/O error parsing bean definition source for " + getDisplayName(), ex);
    		}
    	}
    	
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30

    如果你不知道它执行的是哪个类中的实现,debug!

    穷且益坚,不坠青云之志,
    老当益壮,宁移白首之心。
    与诸位共勉!

  • 相关阅读:
    基于extended resource扩展节点资源
    系统太多,多账号互通如何实现?
    L1-028 判断素数
    考研408-计算机网络 第二章-物理层学习笔记及习题
    Java基础进阶IO流-文件复制
    面试时必问的五大问题
    AutoAugment介绍及论文解析
    CSS3基础
    《5G技术引领教育信息化新革命》
    nacos客户端连接服务端报Client not connected, current status:STARTING
  • 原文地址:https://blog.csdn.net/qq_35549286/article/details/127837385