Spring的IOC在存储bean的时候是将bean存放在org.springframework.beans.factory.support.DefaultSingletonBeanRegistry中的一个线程安全的Map中。 DefaultSingletonBeanRegistry继承了SimpleAliasRegistry并且实现了SingletonBeanRegistry接口。
singletonObjects就是存放bean的地方
添加bean的方法:
Spring的IOC在存储bean的时候是将bean存放在org.springframework.beans.factory.support.DefaultSingletonBeanRegistry中的一个线程安全的Map中。 DefaultSingletonBeanRegistry继承了SimpleAliasRegistry并且实现了SingletonBeanRegistry接口。
singletonObjects就是存放bean的地方
添加bean的方法:
转载于:https://my.oschina.net/u/3268478/blog/2048747