spring document

The container then injects those dependencies when it creates the bean.

Inversion of Control (IoC)

The BeanFactory interface provides an advanced configuration mechanism capable of managing any type of object. ApplicationContext is a sub-interface of BeanFactory. It adds easier integration with Spring's AOP features; message
resource handling (for use in internationalization), event publication; and application-layer specific contexts such as the WebApplicationContext for use in web applications.

spring document_第1张图片

IoC容器的高度抽象

Bean Overview

Within the container itself, these bean definitions are represented as BeanDefinition objects, which contain (among other information) the following metadata:
1、A package-qualified class name: typically the actual implementation class of the bean being defined.
2、Bean behavioral configuration elements, which state how the bean should behave in the container
(scope, lifecycle callbacks, and so forth).
3、References to other beans that are needed for the bean to do its work; these references are also called collaborators or dependencies.
4、Other configuration settings to set in the newly created object, for example, the number of connections to use in a bean that manages a connection pool, or the size limit of the pool.

spring document_第2张图片

用户能够在ApplicationContext容器外给其注册自己生成的对象,通过获取getBeanFactory()得到BeanFactory,这个BeanFacoty是DefaultListableBeanFactory的对象,DefaultListableBeanFactory有两个注册方法:registerSingleton(...)和registerBeanDefinition(...)

Ioc中bean别名的列子:

子系统A中通过一个名为“subsystemA-dataSource”配置了一个数据源关联,子系统B中通过一个名为"subsystemB-dataSource"配置了一个数据源关联;当组合他们到一个应用中,这个应用是通过一个名为“myApp-dataSource”配置数据源关联的;为了使得这三个不同配置用的是同一个数据源应该这样配置(这个配置放置在组合的引用中):

<alias name="subsystemA-dataSource" alias="subsystemB-dataSource"/>
<alias name="subsystemA-dataSource" alias="myApp-dataSource" />

spring document_第3张图片

spring document_第4张图片

循环依赖不能存在构造函数中,只能是set注入方式;循环依赖也就“鸡和蛋的科学问题”

你可能感兴趣的:(spring document)