源码地址:https://github.com/spring-projects/spring-framework
仓库地址:https://gitcode.net/qq_42665745/spring/-/tree/13-auto-scan-bean
自动扫描注册Bean
自动扫描Bean流程:
- 配置文件中配置标签<context:component-scan base-package=“xxx”/>
- AbstractApplicationContext#refresh刷新上下文,refreshBeanFactory()解析xml加载BeanDefinition时,会先判断是否开启自动扫描开关context:component-scan/标签,
如果有的话,扫描包路径下所有带@Component注解的类,并实例化成BeanDefinition对象,然后解析@Scope注解,配置BeanDefinition是单例还是原型,最后注册到BeanFactory中,实现自动化注册BeanDefinition。然后再在xml中找有没有标签解析注册到容器中。 - 加载BeanDefinition之后,Bean初始化前,会调用所有的BeanFactoryPostProcessor实现类,PropertyPlaceholderConfigurer就是这时修改BeanDefinition,对${}进行替换的