例如,如果我在 application-context.xml 中声明:
<context:annotation-config/>
我从官方文档中读到:
隐式注册的后处理器包括AutowiredAnnotationBeanPostProcessor、CommonAnnotationBeanPostProcessor、PersistenceAnnotationBeanPostProcessor,以及前面提到的RequiredAnnotationBeanPostProcessor。
但我想知道 Spring 是如何在幕后工作的,我认为这个 1-liner 被转换为文档中提到的后处理器的几个 bean 定义。
但是,我的问题是,哪个 Spring 组件/类实现了这种“从 1-liner 到多个 bean 定义的转换”功能?