GenericBeanDefinition is a one-stop shop for standard bean definition purposes. Like any bean definition, it allows for specifying a class plus optionally constructor argument values and property values. Additionally, deriving from a parent bean definition can be flexibly configured through the "parentName" property.
In general, use this GenericBeanDefinition class for the purpose of registering user-visible bean definitions (which a post-processor might operate on, potentially even reconfiguring the parent name). Use RootBeanDefinition / ChildBeanDefinition where parent/child relationships happen to be pre-determined.
这是Spring的注释,可以看出:
GenericBeanDefinition 是一站式Bean定义组件。可以满足任何要求的Bean定义。读取配置后生成的就是GenericBeanDefinition。而Spring在创建Bean的时候用的其实是RootBeanDefinition。RootBeanDifinition主要由 GenericBeanDefinition 以及 父BeanDefinition合并来的。可以看到 GenericBeanDefinition 的 getParentName()方法会返回 parentBeanName,而 RootBeanDefinition 的 getParentName始终返回的是 null。
同时上文也提到了,如果提前知道父子BeanDefinition,就直接使用 RootBeanDefinition和ChildBeanDefinition(自定义标签解析的时候)