哈哈,原来IOC容器的bean是存在DefaultSingletonBeanRegistry的一个Map类型的属性当中。...

经过查看源代码发现IOC容器中的bean实例(不知道是不是所有的bean)是存储在一个DefaultSingletonBeanRegistry类实例的一个Map类型的属性当中

下面是DefaultSingletonBeanRegistry类的定义:

//类定义
public
class DefaultSingletonBeanRegistry extends SimpleAliasRegistry implements SingletonBeanRegistry {

下面是这个类中的一个属性:

/** Cache of singleton objects: bean name --> bean instance */
//生成的bean将存储在这个属性中。初始容量为256的Map对象。
private final Map<String, Object> singletonObjects = new ConcurrentHashMap<String, Object>(256);

 

下面是DefaultSingletonBeanRegistry类的一个方法,这个方法添加bean实例到一个Map属性中

/**
* Add the given singleton object to the singleton cache of this factory.
* <p>To be called for eager registration of singletons.
* @param beanName the name of the bean //
* @param singletonObject the singleton object
*/

protected void addSingleton(String beanName, Object singletonObject) {
        synchronized (this.singletonObjects) {
       //singletonObjects 是DefaultSingletonBeanRegistry类的一个Map类型的字段。把bean实例都添加到了Map对象中。
            this.singletonObjects.put(beanName, (singletonObject != null ? singletonObject : NULL_OBJECT));
            this.singletonFactories.remove(beanName);
            this.earlySingletonObjects.remove(beanName);
            this.registeredSingletons.add(beanName);
        }
    }

 

转载于:https://www.cnblogs.com/GooPolaris/p/7918764.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值