|
The Spring Framework | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.springframework.beans.factory.support.DefaultSingletonBeanRegistry
org.springframework.beans.factory.support.AbstractBeanFactory
public abstract class AbstractBeanFactory
Abstract base class for BeanFactory
implementations, providing the full capabilities of the
ConfigurableBeanFactory SPI.
Does not assume a listable bean factory: can therefore also be used
as base class for bean factory implementations which obtain bean definitions
from some backend resource (where bean definition access is an expensive operation).
This class provides a singleton cache (through its base class
DefaultSingletonBeanRegistry,
singleton/prototype determination, FactoryBean
handling, aliases, bean definition merging for child bean definitions,
and bean destruction (DisposableBean
interface, custom destroy methods). Furthermore, it can manage a bean factory
hierarchy (delegating to the parent in case of an unknown bean), through implementing
the HierarchicalBeanFactory interface.
The main template methods to be implemented by subclasses are
getBeanDefinition(java.lang.String) and createBean(java.lang.String, org.springframework.beans.factory.support.RootBeanDefinition, java.lang.Object[]), retrieving a bean definition
for a given bean name and creating a bean instance for a given bean definition,
respectively. Default implementations of those operations can be found in
DefaultListableBeanFactory and AbstractAutowireCapableBeanFactory.
getBeanDefinition(java.lang.String),
createBean(java.lang.String, org.springframework.beans.factory.support.RootBeanDefinition, java.lang.Object[]),
AbstractAutowireCapableBeanFactory.createBean(java.lang.Class, int, boolean),
DefaultListableBeanFactory.getBeanDefinition(java.lang.String)| Field Summary |
|---|
| Fields inherited from class org.springframework.beans.factory.support.DefaultSingletonBeanRegistry |
|---|
logger |
| Fields inherited from interface org.springframework.beans.factory.config.ConfigurableBeanFactory |
|---|
SCOPE_PROTOTYPE, SCOPE_SINGLETON |
| Fields inherited from interface org.springframework.beans.factory.BeanFactory |
|---|
FACTORY_BEAN_PREFIX |
| Constructor Summary | |
|---|---|
AbstractBeanFactory()
Create a new AbstractBeanFactory. |
|
AbstractBeanFactory(BeanFactory parentBeanFactory)
Create a new AbstractBeanFactory with the given parent. |
|
| Method Summary | |
|---|---|
void |
addBeanPostProcessor(BeanPostProcessor beanPostProcessor)
Add a new BeanPostProcessor that will get applied to beans created by this factory. |
void |
addPropertyEditorRegistrar(PropertyEditorRegistrar registrar)
Add a PropertyEditorRegistrar to be applied to all bean creation processes. |
protected void |
afterPrototypeCreation(String beanName)
Callback after prototype creation. |
protected void |
beforePrototypeCreation(String beanName)
Callback before prototype creation. |
protected void |
checkMergedBeanDefinition(RootBeanDefinition mbd,
String beanName,
Object[] args)
Check the given merged bean definition, potentially throwing validation exceptions. |
protected void |
clearMergedBeanDefinition(String beanName)
Remove the merged bean definition for the specified bean, recreating it on next access. |
boolean |
containsBean(String name)
Does this bean factory contain a bean with the given name? |
protected abstract boolean |
containsBeanDefinition(String beanName)
Check if this bean factory contains a bean definition with the given name. |
boolean |
containsLocalBean(String name)
Return whether the local bean factory contains a bean of the given name, ignoring beans defined in ancestor contexts. |
void |
copyConfigurationFrom(ConfigurableBeanFactory otherFactory)
Copy all relevant configuration from the given other factory. |
protected abstract Object |
createBean(String beanName,
RootBeanDefinition mbd,
Object[] args)
Create a bean instance for the given bean definition. |
void |
destroyBean(String beanName,
Object beanInstance)
Destroy the given bean instance (usually a prototype instance obtained from this factory) according to its bean definition. |
protected void |
destroyBean(String beanName,
Object beanInstance,
RootBeanDefinition mbd)
Destroy the given bean instance (usually a prototype instance obtained from this factory) according to the given bean definition. |
void |
destroyScopedBean(String beanName)
Destroy the specified scoped bean in the current target scope, if any. |
String[] |
getAliases(String name)
Return the aliases for the given bean name, if any. |
Object |
getBean(String name)
Return an instance, which may be shared or independent, of the specified bean. |
Object |
getBean(String name,
Class requiredType)
Return an instance, which may be shared or independent, of the specified bean. |
Object |
getBean(String name,
Class requiredType,
Object[] args)
Return an instance, which may be shared or independent, of the specified bean. |
Object |
getBean(String name,
Object[] args)
Return an instance, which may be shared or independent, of the specified bean. |
ClassLoader |
getBeanClassLoader()
Return this factory's class loader for loading bean classes. |
protected abstract BeanDefinition |
getBeanDefinition(String beanName)
Return the bean definition for the given bean name. |
int |
getBeanPostProcessorCount()
Return the current number of registered BeanPostProcessors, if any. |
List |
getBeanPostProcessors()
Return the list of BeanPostProcessors that will get applied to beans created with this factory. |
Map |
getCustomEditors()
Return the map of custom editors, with Classes as keys and PropertyEditors as values. |
RootBeanDefinition |
getMergedBeanDefinition(String beanName)
Return a RootBeanDefinition for the given bean name, merging a child bean definition with its parent if necessary. |
protected RootBeanDefinition |
getMergedBeanDefinition(String beanName,
BeanDefinition bd)
Return a RootBeanDefinition for the given top-level bean, by merging with the parent if the given bean's definition is a child bean definition. |
protected RootBeanDefinition |
getMergedBeanDefinition(String beanName,
BeanDefinition bd,
BeanDefinition containingBd)
Return a RootBeanDefinition for the given bean, by merging with the parent if the given bean's definition is a child bean definition. |
protected RootBeanDefinition |
getMergedBeanDefinition(String beanName,
boolean includingAncestors)
Return a RootBeanDefinition, even by traversing parent if the parameter is a child definition. |
protected Object |
getObjectForBeanInstance(Object beanInstance,
String name,
RootBeanDefinition mbd)
Get the object for the given bean instance, either the bean instance itself or its created object in case of a FactoryBean. |
protected Object |
getObjectFromFactoryBean(FactoryBean factory,
String beanName,
RootBeanDefinition mbd)
Obtain an object to expose from the given FactoryBean. |
BeanFactory |
getParentBeanFactory()
Return the parent bean factory, or null if there is none. |
Set |
getPropertyEditorRegistrars()
Return the set of PropertyEditorRegistrars. |
Scope |
getRegisteredScope(String scopeName)
Return the Scope implementation for the given scope name, if any. |
String[] |
getRegisteredScopeNames()
Return the names of all currently registered scopes. |
Class |
getType(String name)
Determine the type of the bean with the given name. |
TypeConverter |
getTypeConverter()
Obtain a type converter as used by this BeanFactory. |
protected Class |
getTypeForFactoryBean(FactoryBean factoryBean)
Determine the type for the given FactoryBean. |
protected Class |
getTypeForFactoryBean(String beanName,
RootBeanDefinition mbd)
Determine the bean type for the given FactoryBean definition, as far as possible. |
protected boolean |
hasDestructionAwareBeanPostProcessors()
Return whether this factory holds a DestructionAwareBeanPostProcessor that will get applied to singleton beans on shutdown. |
protected boolean |
hasInstantiationAwareBeanPostProcessors()
Return whether this factory holds a InstantiationAwareBeanPostProcessor that will get applied to singleton beans on shutdown. |
protected void |
initBeanWrapper(BeanWrapper bw)
Initialize the given BeanWrapper with the custom editors registered with this factory. |
protected boolean |
isAlias(String beanName)
Determine whether this given bean name is defines as an alias (as opposed to the name of an actual bean definition). |
protected boolean |
isBeanClassMatch(String beanName,
RootBeanDefinition mbd,
Class targetType)
Check whether the bean class of the given bean definition matches the specified target type. |
protected boolean |
isBeanNameInUse(String beanName)
Determine whether the given bean name is already in use within this factory, that is, whether there is a local bean registered under this name or an inner bean created with this name. |
boolean |
isCacheBeanMetadata()
Return whether to cache bean metadata such as given bean definitions (in merged fashion) and resolved bean classes. |
boolean |
isCurrentlyInCreation(String beanName)
Return whether the specified bean is currently in creation. |
boolean |
isFactoryBean(String name)
Determine whether the bean with the given name is a FactoryBean. |
boolean |
isPrototype(String name)
Is this bean a prototype? |
protected boolean |
isPrototypeCurrentlyInCreation(String beanName)
Return whether the specified prototype bean is currently in creation (within the current thread). |
boolean |
isSingleton(String name)
Is this bean a shared singleton? |
boolean |
isTypeMatch(String name,
Class targetType)
Check whether the bean with the given name matches the specified type. |
protected String |
originalBeanName(String name)
Determine the original bean name, resolving locally defined aliases to canonical names. |
protected Object |
postProcessObjectFromFactoryBean(Object object,
String beanName)
Post-process the given object that has been obtained from the FactoryBean. |
protected Class |
predictBeanType(String beanName,
RootBeanDefinition mbd)
Predict the eventual bean type (of the processed bean instance) for the specified bean. |
void |
registerAlias(String beanName,
String alias)
Given a bean name, create an alias. |
void |
registerCustomEditor(Class requiredType,
PropertyEditor propertyEditor)
Register the given custom property editor for all properties of the given type. |
protected void |
registerCustomEditors(PropertyEditorRegistry registry)
Initialize the given PropertyEditorRegistry with the custom editors registered with this BeanFactory. |
protected void |
registerDisposableBeanIfNecessary(String beanName,
Object bean,
RootBeanDefinition mbd)
Add the given bean to the list of disposable beans in this factory, registering its DisposableBean interface and/or the given destroy method to be called on factory shutdown (if applicable). |
void |
registerScope(String scopeName,
Scope scope)
Register the given scope, backed by the given Scope implementation. |
protected void |
removeSingleton(String beanName)
Overridden to clear the FactoryBean object cache as well. |
protected boolean |
requiresDestruction(Object bean,
RootBeanDefinition mbd)
Determine whether the given bean requires destruction on shutdown. |
protected Class |
resolveBeanClass(RootBeanDefinition mbd,
String beanName)
Resolve the bean class for the specified bean definition, resolving a bean class name into a Class reference (if necessary) and storing the resolved Class in the bean definition for further use. |
void |
setBeanClassLoader(ClassLoader beanClassLoader)
Set the class loader to use for loading bean classes. |
void |
setCacheBeanMetadata(boolean cacheBeanMetadata)
Set whether to cache bean metadata such as given bean definitions (in merged fashion) and resolved bean classes. |
void |
setParentBeanFactory(BeanFactory parentBeanFactory)
Set the parent of this bean factory. |
protected String |
transformedBeanName(String name)
Return the bean name, stripping out the factory dereference prefix if necessary, and resolving aliases to canonical names. |
| Methods inherited from class org.springframework.beans.factory.support.DefaultSingletonBeanRegistry |
|---|
addSingleton, afterSingletonCreation, beforeSingletonCreation, containsSingleton, destroyBean, destroySingleton, destroySingletons, getDependentBeans, getSingleton, getSingleton, getSingletonCount, getSingletonMutex, getSingletonNames, hasDependentBean, isSingletonCurrentlyInCreation, registerDependentBean, registerDisposableBean, registerSingleton |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.springframework.beans.factory.config.ConfigurableBeanFactory |
|---|
destroySingletons |
| Methods inherited from interface org.springframework.beans.factory.config.SingletonBeanRegistry |
|---|
containsSingleton, getSingleton, getSingletonCount, getSingletonNames, registerSingleton |
| Constructor Detail |
|---|
public AbstractBeanFactory()
public AbstractBeanFactory(BeanFactory parentBeanFactory)
parentBeanFactory - parent bean factory, or null if nonegetBean(java.lang.String)| Method Detail |
|---|
public Object getBean(String name)
throws BeansException
BeanFactoryThis method allows a Spring BeanFactory to be used as a replacement for the Singleton or Prototype design pattern. Callers may retain references to returned objects in the case of Singleton beans.
Translates aliases back to the corresponding canonical bean name. Will ask the parent factory if the bean cannot be found in this factory instance.
getBean in interface BeanFactoryname - the name of the bean to retrieve
NoSuchBeanDefinitionException - if there is no bean definition
with the specified name
BeansException - if the bean could not be obtained
public Object getBean(String name,
Class requiredType)
throws BeansException
BeanFactoryBehaves the same as BeanFactory.getBean(String), but provides a measure of type
safety by throwing a BeanNotOfRequiredTypeException if the bean is not of the
required type. This means that ClassCastException can't be thrown on casting
the result correctly, as can happen with BeanFactory.getBean(String).
Translates aliases back to the corresponding canonical bean name. Will ask the parent factory if the bean cannot be found in this factory instance.
getBean in interface BeanFactoryname - the name of the bean to retrieverequiredType - type the bean must match. Can be an interface or superclass
of the actual class, or null for any match. For example, if the value
is Object.class, this method will succeed whatever the class of the
returned instance.
BeanNotOfRequiredTypeException - if the bean is not of the required type
NoSuchBeanDefinitionException - if there's no such bean definition
BeansException - if the bean could not be created
public Object getBean(String name,
Object[] args)
throws BeansException
name - the name of the bean to retrieveargs - arguments to use if creating a prototype using explicit arguments to a
static factory method. It is invalid to use a non-null args value in any other case.
BeansException - if the bean could not be created
public Object getBean(String name,
Class requiredType,
Object[] args)
throws BeansException
name - the name of the bean to retrieverequiredType - the required type of the bean to retrieveargs - arguments to use if creating a prototype using explicit arguments to a
static factory method. It is invalid to use a non-null args value in any other case.
BeansException - if the bean could not be createdpublic boolean containsBean(String name)
BeanFactoryBeanFactory.getBean(java.lang.String) able to obtain a bean instance for the given name?
Translates aliases back to the corresponding canonical bean name. Will ask the parent factory if the bean cannot be found in this factory instance.
containsBean in interface BeanFactoryname - the name of the bean to query
public boolean isSingleton(String name)
throws NoSuchBeanDefinitionException
BeanFactoryBeanFactory.getBean(java.lang.String) always
return the same instance?
Note: This method returning false does not clearly indicate
independent instances. It indicates non-singleton instances, which may correspond
to a scoped bean as well. Use the BeanFactory.isPrototype(java.lang.String) operation to explicitly
check for independent instances.
Translates aliases back to the corresponding canonical bean name. Will ask the parent factory if the bean cannot be found in this factory instance.
isSingleton in interface BeanFactoryname - the name of the bean to query
NoSuchBeanDefinitionException - if there is no bean with the given nameBeanFactory.getBean(java.lang.String),
BeanFactory.isPrototype(java.lang.String)
public boolean isPrototype(String name)
throws NoSuchBeanDefinitionException
BeanFactoryBeanFactory.getBean(java.lang.String) always return
independent instances?
Note: This method returning false does not clearly indicate
a singleton object. It indicates non-independent instances, which may correspond
to a scoped bean as well. Use the BeanFactory.isSingleton(java.lang.String) operation to explicitly
check for a shared singleton instance.
Translates aliases back to the corresponding canonical bean name. Will ask the parent factory if the bean cannot be found in this factory instance.
isPrototype in interface BeanFactoryname - the name of the bean to query
NoSuchBeanDefinitionException - if there is no bean with the given nameBeanFactory.getBean(java.lang.String),
BeanFactory.isSingleton(java.lang.String)
public boolean isTypeMatch(String name,
Class targetType)
throws NoSuchBeanDefinitionException
BeanFactoryBeanFactory.getBean(java.lang.String) call for the given name
would return an object that is assignable to the specified target type.
Translates aliases back to the corresponding canonical bean name. Will ask the parent factory if the bean cannot be found in this factory instance.
isTypeMatch in interface BeanFactoryname - the name of the bean to querytargetType - the type to match against
true if the bean type matches,
false if it doesn't match or cannot be determined yet
NoSuchBeanDefinitionException - if there is no bean with the given nameBeanFactory.getBean(java.lang.String),
BeanFactory.getType(java.lang.String)
public Class getType(String name)
throws NoSuchBeanDefinitionException
BeanFactoryBeanFactory.getBean(java.lang.String) would return for the given name.
For a FactoryBean, return the type of object that the FactoryBean creates,
as exposed by FactoryBean.getObjectType().
Translates aliases back to the corresponding canonical bean name. Will ask the parent factory if the bean cannot be found in this factory instance.
getType in interface BeanFactoryname - the name of the bean to query
null if not determinable
NoSuchBeanDefinitionException - if there is no bean with the given nameBeanFactory.getBean(java.lang.String),
BeanFactory.isTypeMatch(java.lang.String, java.lang.Class)public String[] getAliases(String name)
BeanFactoryBeanFactory.getBean(java.lang.String) call.
If the given name is an alias, the corresponding original bean name and other aliases (if any) will be returned, with the original bean name being the first element in the array.
Will ask the parent factory if the bean cannot be found in this factory instance.
getAliases in interface BeanFactoryname - the bean name to check for aliases
BeanFactory.getBean(java.lang.String)public BeanFactory getParentBeanFactory()
HierarchicalBeanFactorynull if there is none.
getParentBeanFactory in interface HierarchicalBeanFactorypublic boolean containsLocalBean(String name)
HierarchicalBeanFactoryThis is an alternative to containsBean, ignoring a bean
of the given name from an ancestor bean factory.
containsLocalBean in interface HierarchicalBeanFactoryname - the name of the bean to query
BeanFactory.containsBean(java.lang.String)public void setParentBeanFactory(BeanFactory parentBeanFactory)
ConfigurableBeanFactoryNote that the parent cannot be changed: It should only be set outside a constructor if it isn't available at the time of factory instantiation.
setParentBeanFactory in interface ConfigurableBeanFactoryparentBeanFactory - the parent BeanFactoryHierarchicalBeanFactory.getParentBeanFactory()public void setBeanClassLoader(ClassLoader beanClassLoader)
ConfigurableBeanFactoryNote that this class loader will only apply to bean definitions that do not carry a resolved bean class yet. This is the case as of Spring 2.0 by default: Bean definitions only carry bean class names, to be resolved once the factory processes the bean definition.
setBeanClassLoader in interface ConfigurableBeanFactorybeanClassLoader - the class loader to use,
or null to suggest the default class loaderpublic ClassLoader getBeanClassLoader()
ConfigurableBeanFactory
getBeanClassLoader in interface ConfigurableBeanFactorypublic void setCacheBeanMetadata(boolean cacheBeanMetadata)
ConfigurableBeanFactoryTurn this flag off to enable hot-refreshing of bean definition objects and in particular bean classes. If this flag is off, any creation of a bean instance will re-query the bean class loader for newly resolved classes.
setCacheBeanMetadata in interface ConfigurableBeanFactorypublic boolean isCacheBeanMetadata()
ConfigurableBeanFactory
isCacheBeanMetadata in interface ConfigurableBeanFactorypublic void addPropertyEditorRegistrar(PropertyEditorRegistrar registrar)
ConfigurableBeanFactorySuch a registrar creates new PropertyEditor instances and registers them
on the given registry, fresh for each bean creation attempt. This avoids
the need for synchronization on custom editors; hence, it is generally
preferable to use this method instead of ConfigurableBeanFactory.registerCustomEditor(java.lang.Class, java.beans.PropertyEditor).
addPropertyEditorRegistrar in interface ConfigurableBeanFactoryregistrar - the PropertyEditorRegistrar to registerpublic Set getPropertyEditorRegistrars()
public void registerCustomEditor(Class requiredType,
PropertyEditor propertyEditor)
ConfigurableBeanFactoryNote that this method will register a shared custom editor instance;
access to that instance will be synchronized for thread-safety. It is
generally prefable to use ConfigurableBeanFactory.addPropertyEditorRegistrar(org.springframework.beans.PropertyEditorRegistrar) instead
of this method, to avoid for the need for synchronization on custom editors.
registerCustomEditor in interface ConfigurableBeanFactoryrequiredType - type of the propertypropertyEditor - editor to registerpublic Map getCustomEditors()
public TypeConverter getTypeConverter()
ConfigurableBeanFactory
getTypeConverter in interface ConfigurableBeanFactorypublic void addBeanPostProcessor(BeanPostProcessor beanPostProcessor)
ConfigurableBeanFactory
addBeanPostProcessor in interface ConfigurableBeanFactorybeanPostProcessor - the bean processor to registerpublic int getBeanPostProcessorCount()
ConfigurableBeanFactory
getBeanPostProcessorCount in interface ConfigurableBeanFactorypublic List getBeanPostProcessors()
protected boolean hasInstantiationAwareBeanPostProcessors()
addBeanPostProcessor(org.springframework.beans.factory.config.BeanPostProcessor),
InstantiationAwareBeanPostProcessorprotected boolean hasDestructionAwareBeanPostProcessors()
addBeanPostProcessor(org.springframework.beans.factory.config.BeanPostProcessor),
DestructionAwareBeanPostProcessor
public void registerScope(String scopeName,
Scope scope)
ConfigurableBeanFactory
registerScope in interface ConfigurableBeanFactoryscopeName - the scope identifierscope - the backing Scope implementationpublic String[] getRegisteredScopeNames()
ConfigurableBeanFactoryThis will only return the names of explicitly registered scopes. Built-in scopes such as "singleton" and "prototype" won't be exposed.
getRegisteredScopeNames in interface ConfigurableBeanFactoryConfigurableBeanFactory.registerScope(java.lang.String, org.springframework.beans.factory.config.Scope)public Scope getRegisteredScope(String scopeName)
ConfigurableBeanFactoryThis will only return explicitly registered scopes. Built-in scopes such as "singleton" and "prototype" won't be exposed.
getRegisteredScope in interface ConfigurableBeanFactoryscopeName - the name of the scope
null if noneConfigurableBeanFactory.registerScope(java.lang.String, org.springframework.beans.factory.config.Scope)public void copyConfigurationFrom(ConfigurableBeanFactory otherFactory)
ConfigurableBeanFactoryShould include all standard configuration settings as well as BeanPostProcessors, Scopes, and factory-specific internal settings. Should not include any metadata of actual bean definitions, such as BeanDefinition objects and bean name aliases.
copyConfigurationFrom in interface ConfigurableBeanFactoryotherFactory - the other BeanFactory to copy from
public void registerAlias(String beanName,
String alias)
throws BeanDefinitionStoreException
ConfigurableBeanFactoryTypically invoked during factory configuration, but can also be used for runtime registration of aliases. Therefore, a factory implementation should synchronize alias access.
registerAlias in interface ConfigurableBeanFactorybeanName - the canonical name of the beanalias - the alias to be registered for the bean
BeanDefinitionStoreException - if the alias is already in useprotected void beforePrototypeCreation(String beanName)
The default implementation register the prototype as currently in creation.
beanName - the name of the prototype about to be createdisPrototypeCurrentlyInCreation(java.lang.String)protected void afterPrototypeCreation(String beanName)
The default implementation marks the prototype as not in creation anymore.
beanName - the name of the prototype that has been createdisPrototypeCurrentlyInCreation(java.lang.String)protected final boolean isPrototypeCurrentlyInCreation(String beanName)
beanName - the name of the beanpublic boolean isCurrentlyInCreation(String beanName)
ConfigurableBeanFactory
isCurrentlyInCreation in interface ConfigurableBeanFactorybeanName - the name of the bean
public void destroyBean(String beanName,
Object beanInstance)
ConfigurableBeanFactoryAny exception that arises during destruction should be caught and logged instead of propagated to the caller of this method.
destroyBean in interface ConfigurableBeanFactorybeanName - the name of the bean definitionbeanInstance - the bean instance to destroy
protected void destroyBean(String beanName,
Object beanInstance,
RootBeanDefinition mbd)
b