天天看點

spring bean registry

registry: XmlBeanFactory 實作了BeanDefinitionRegistry

注冊的最終操作:

            this.beanDefinitionNames.add(beanName);

清除解析之前留下的beanName緩存:

            this.manualSingletonNames.remove(beanName);

            this.frozenBeanDefinitionNames = null;

          this.beanDefinitionMap.put(beanName, beanDefinition);

别名的注冊:

     this.aliasMap.put(alias, name);

Import标簽的解析: