Class RootBeanDefinition
- java.lang.Object
- org.springframework.core.AttributeAccessorSupport
- org.springframework.beans.BeanMetadataAttributeAccessor
- org.springframework.beans.factory.support.AbstractBeanDefinition
- org.springframework.beans.factory.support.RootBeanDefinition
- All Implemented Interfaces:
Serializable,Cloneable,BeanMetadataElement,BeanDefinition,AttributeAccessor
public class RootBeanDefinition extends AbstractBeanDefinition
A root bean definition represents the merged bean definition that backs a specific bean in a Spring BeanFactory at runtime. It might have been created from multiple original bean definitions that inherit from each other, typically registered asGenericBeanDefinitions. A root bean definition is essentially the 'unified' bean definition view at runtime.Root bean definitions may also be used for registering individual bean definitions in the configuration phase. However, since Spring 2.5, the preferred way to register bean definitions programmatically is the
GenericBeanDefinitionclass. GenericBeanDefinition has the advantage that it allows to dynamically define parent dependencies, not 'hard-coding' the role as a root bean definition.- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
GenericBeanDefinition,ChildBeanDefinition, Serialized Form
Field Summary
Fields inherited from class org.springframework.beans.factory.support.AbstractBeanDefinition
AUTOWIRE_AUTODETECT, AUTOWIRE_BY_NAME, AUTOWIRE_BY_TYPE, AUTOWIRE_CONSTRUCTOR, AUTOWIRE_NO, DEPENDENCY_CHECK_ALL, DEPENDENCY_CHECK_NONE, DEPENDENCY_CHECK_OBJECTS, DEPENDENCY_CHECK_SIMPLE, INFER_METHOD, SCOPE_DEFAULT
Fields inherited from interface org.springframework.beans.factory.config.BeanDefinition
ROLE_APPLICATION, ROLE_INFRASTRUCTURE, ROLE_SUPPORT, SCOPE_PROTOTYPE, SCOPE_SINGLETON
Constructor Summary
Constructors Constructor Description RootBeanDefinition()Create a new RootBeanDefinition, to be configured through its bean properties and configuration methods.RootBeanDefinition(Class<?> beanClass)Create a new RootBeanDefinition for a singleton.RootBeanDefinition(Class<?> beanClass, int autowireMode, boolean dependencyCheck)Create a new RootBeanDefinition for a singleton, using the given autowire mode.RootBeanDefinition(Class<?> beanClass, ConstructorArgumentValues cargs, MutablePropertyValues pvs)Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values.RootBeanDefinition(String beanClassName)Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values.RootBeanDefinition(String beanClassName, ConstructorArgumentValues cargs, MutablePropertyValues pvs)Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values.RootBeanDefinition(RootBeanDefinition original)Create a new RootBeanDefinition as deep copy of the given bean definition.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RootBeanDefinitioncloneBeanDefinition()Clone this bean definition.booleanequals(Object other)BeanDefinitionHoldergetDecoratedDefinition()Return the target definition that is being decorated by this bean definition, if any.StringgetParentName()Return the name of the parent definition of this bean definition, if any.AnnotatedElementgetQualifiedElement()Return theAnnotatedElementdefining qualifiers, if any.MethodgetResolvedFactoryMethod()Return the resolved factory method as a Java Method object, if available.Class<?>getTargetType()Return the target type of this bean definition, if known (either specified in advance or resolved on first instantiation).booleanisExternallyManagedConfigMember(Member configMember)booleanisExternallyManagedDestroyMethod(String destroyMethod)booleanisExternallyManagedInitMethod(String initMethod)booleanisFactoryMethod(Method candidate)Check whether the given candidate qualifies as a factory method.voidregisterExternallyManagedConfigMember(Member configMember)voidregisterExternallyManagedDestroyMethod(String destroyMethod)voidregisterExternallyManagedInitMethod(String initMethod)voidsetDecoratedDefinition(BeanDefinitionHolder decoratedDefinition)Register a target definition that is being decorated by this bean definition.voidsetParentName(String parentName)Set the name of the parent definition of this bean definition, if any.voidsetQualifiedElement(AnnotatedElement qualifiedElement)Specify theAnnotatedElementdefining qualifiers, to be used instead of the target class or factory method.voidsetTargetType(Class<?> targetType)Specify the target type of this bean definition, if known in advance.voidsetTargetType(ResolvableType targetType)Specify a generics-containing target type of this bean definition, if known in advance.voidsetUniqueFactoryMethodName(String name)Specify a factory method name that refers to a non-overloaded method.StringtoString()Methods inherited from class org.springframework.beans.factory.support.AbstractBeanDefinition
addQualifier, applyDefaults, clone, copyQualifiersFrom, getAutowireMode, getBeanClass, getBeanClassName, getConstructorArgumentValues, getDependencyCheck, getDependsOn, getDescription, getDestroyMethodName, getFactoryBeanName, getFactoryMethodName, getInitMethodName, getMethodOverrides, getOriginatingBeanDefinition, getPropertyValues, getQualifier, getQualifiers, getResolvedAutowireMode, getResource, getResourceDescription, getRole, getScope, hasBeanClass, hasConstructorArgumentValues, hashCode, hasQualifier, isAbstract, isAutowireCandidate, isEnforceDestroyMethod, isEnforceInitMethod, isLazyInit, isLenientConstructorResolution, isNonPublicAccessAllowed, isPrimary, isPrototype, isSingleton, isSynthetic, overrideFrom, prepareMethodOverride, prepareMethodOverrides, resolveBeanClass, setAbstract, setAutowireCandidate, setAutowireMode, setBeanClass, setBeanClassName, setConstructorArgumentValues, setDependencyCheck, setDependsOn, setDescription, setDestroyMethodName, setEnforceDestroyMethod, setEnforceInitMethod, setFactoryBeanName, setFactoryMethodName, setInitMethodName, setLazyInit, setLenientConstructorResolution, setMethodOverrides, setNonPublicAccessAllowed, setOriginatingBeanDefinition, setPrimary, setPropertyValues, setResource, setResourceDescription, setRole, setScope, setSynthetic, validate
Methods inherited from class org.springframework.beans.BeanMetadataAttributeAccessor
addMetadataAttribute, getAttribute, getMetadataAttribute, getSource, removeAttribute, setAttribute, setSource
Methods inherited from class org.springframework.core.AttributeAccessorSupport
attributeNames, copyAttributesFrom, hasAttribute
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.springframework.core.AttributeAccessor
attributeNames, getAttribute, hasAttribute, removeAttribute, setAttribute
Methods inherited from interface org.springframework.beans.BeanMetadataElement
getSource
Constructor Detail
RootBeanDefinition
public RootBeanDefinition()
Create a new RootBeanDefinition, to be configured through its bean properties and configuration methods.- See Also:
AbstractBeanDefinition.setBeanClass(java.lang.Class<?>),AbstractBeanDefinition.setScope(java.lang.String),AbstractBeanDefinition.setConstructorArgumentValues(org.springframework.beans.factory.config.ConstructorArgumentValues),AbstractBeanDefinition.setPropertyValues(org.springframework.beans.MutablePropertyValues)
RootBeanDefinition
public RootBeanDefinition(Class<?> beanClass)
Create a new RootBeanDefinition for a singleton.- Parameters:
beanClass- the class of the bean to instantiate- See Also:
AbstractBeanDefinition.setBeanClass(java.lang.Class<?>)
RootBeanDefinition
public RootBeanDefinition(Class<?> beanClass, int autowireMode, boolean dependencyCheck)
Create a new RootBeanDefinition for a singleton, using the given autowire mode.- Parameters:
beanClass- the class of the bean to instantiateautowireMode- by name or type, using the constants in this interfacedependencyCheck- whether to perform a dependency check for objects (not applicable to autowiring a constructor, thus ignored there)
RootBeanDefinition
public RootBeanDefinition(Class<?> beanClass, ConstructorArgumentValues cargs, MutablePropertyValues pvs)
Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values.- Parameters:
beanClass- the class of the bean to instantiatecargs- the constructor argument values to applypvs- the property values to apply
RootBeanDefinition
public RootBeanDefinition(String beanClassName)
Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values.Takes a bean class name to avoid eager loading of the bean class.
- Parameters:
beanClassName- the name of the class to instantiate
RootBeanDefinition
public RootBeanDefinition(String beanClassName, ConstructorArgumentValues cargs, MutablePropertyValues pvs)
Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values.Takes a bean class name to avoid eager loading of the bean class.
- Parameters:
beanClassName- the name of the class to instantiatecargs- the constructor argument values to applypvs- the property values to apply
RootBeanDefinition
public RootBeanDefinition(RootBeanDefinition original)
Create a new RootBeanDefinition as deep copy of the given bean definition.- Parameters:
original- the original bean definition to copy from
Method Detail
getParentName
public String getParentName()
Description copied from interface:BeanDefinitionReturn the name of the parent definition of this bean definition, if any.
setParentName
public void setParentName(String parentName)
Description copied from interface:BeanDefinitionSet the name of the parent definition of this bean definition, if any.
setDecoratedDefinition
public void setDecoratedDefinition(BeanDefinitionHolder decoratedDefinition)
Register a target definition that is being decorated by this bean definition.
getDecoratedDefinition
public BeanDefinitionHolder getDecoratedDefinition()
Return the target definition that is being decorated by this bean definition, if any.
setQualifiedElement
public void setQualifiedElement(AnnotatedElement qualifiedElement)
Specify theAnnotatedElementdefining qualifiers, to be used instead of the target class or factory method.- Since:
- 4.3.3
- See Also:
setTargetType(ResolvableType),getResolvedFactoryMethod()
getQualifiedElement
public AnnotatedElement getQualifiedElement()
Return theAnnotatedElementdefining qualifiers, if any. Otherwise, the factory method and target class will be checked.- Since:
- 4.3.3
setTargetType
public void setTargetType(ResolvableType targetType)
Specify a generics-containing target type of this bean definition, if known in advance.- Since:
- 4.3.3
setTargetType
public void setTargetType(Class<?> targetType)
Specify the target type of this bean definition, if known in advance.- Since:
- 3.2.2
getTargetType
public Class<?> getTargetType()
Return the target type of this bean definition, if known (either specified in advance or resolved on first instantiation).- Since:
- 3.2.2
setUniqueFactoryMethodName
public void setUniqueFactoryMethodName(String name)
Specify a factory method name that refers to a non-overloaded method.
isFactoryMethod
public boolean isFactoryMethod(Method candidate)
Check whether the given candidate qualifies as a factory method.
getResolvedFactoryMethod
public Method getResolvedFactoryMethod()
Return the resolved factory method as a Java Method object, if available.- Returns:
- the factory method, or
nullif not found or not resolved yet
registerExternallyManagedConfigMember
public void registerExternallyManagedConfigMember(Member configMember)
isExternallyManagedConfigMember
public boolean isExternallyManagedConfigMember(Member configMember)
registerExternallyManagedInitMethod
public void registerExternallyManagedInitMethod(String initMethod)
isExternallyManagedInitMethod
public boolean isExternallyManagedInitMethod(String initMethod)
registerExternallyManagedDestroyMethod
public void registerExternallyManagedDestroyMethod(String destroyMethod)
isExternallyManagedDestroyMethod
public boolean isExternallyManagedDestroyMethod(String destroyMethod)
cloneBeanDefinition
public RootBeanDefinition cloneBeanDefinition()
Description copied from class:AbstractBeanDefinitionClone this bean definition. To be implemented by concrete subclasses.- Specified by:
cloneBeanDefinitionin classAbstractBeanDefinition- Returns:
- the cloned bean definition object
equals
public boolean equals(Object other)
- Overrides:
equalsin classAbstractBeanDefinition
toString
public String toString()
- Overrides:
toStringin classAbstractBeanDefinition