转载

spring5.1.1源码剖析之AbstractAutowireCapableBeanFactory

源码文档中是这么说的:

Abstract bean factory superclass that implements default bean creation,

with the full capabilities specified by the {@link RootBeanDefinition} class.

Implements the {@link org.springframework.beans.factory.config.AutowireCapableBeanFactory}

interface in addition to AbstractBeanFactory’s {@link #createBean} method.

简单点说这个beanfactory做了三样事情

  1. 实现默认bean创建,bean拥有RootBeanDefinition类指定的所有能力
  2. 实现了AutowireCapableBeanFactory接口。
  3. 实现了AbstractBeanFactory的createBean方法。
原文  http://johnwonder.coding.me/2019/05/29/spring-source-AbstractAutowireCapableBeanFactory/
正文到此结束
Loading...