-
Notifications
You must be signed in to change notification settings - Fork 0
spring容器中重要数据结构BeanDefinition
akuncf edited this page Mar 16, 2019
·
1 revision
A BeanDefinition describes a bean instance
- GenericBeanDefinition
使用xml格式声明的bean会被解析为此实现
- ScannedGenericBeanDefinition
通过注解形式(例如@Service @Component @Repository @Controller)会被解析为此实现
- AnnotatedGenericBeanDefinition
通过@Bean注解会被解析为此实现
hold bean definitions
-
DefaultListableBeanFactory
-
GenericApplicationContext