Class AbstractFactoryBean<T>
- Type Parameters:
T- the bean type
- All Implemented Interfaces:
Aware,BeanClassLoaderAware,BeanFactoryAware,DisposableBean,FactoryBean<T>,InitializingBean
- Direct Known Subclasses:
AbstractComponentAwareFactoryBean,ViewResolversFactoryBean
createInstance() to return null.
Simple template superclass for FactoryBean implementations that
creates a singleton or a prototype object, depending on a flag.
If the "singleton" flag is true (the default),
this class will create the object that it creates exactly once
on initialization and subsequently return said singleton instance
on all calls to the getObject() method.
Else, this class will create a new instance every time the
getObject() method is invoked. Subclasses are responsible
for implementing the abstract createInstance() template
method to actually create the object(s) to expose.
- Since:
- 9.1.0
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate classReflective InvocationHandler for lazy access to the actual singleton object. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate ClassLoaderprivate BeanFactoryprivate Tprivate booleanprivate booleanprivate TFields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidEagerly create the singleton instance, if necessary.protected abstract TTemplate method that subclasses must override to construct the object returned by this factory.voiddestroy()Destroy the singleton instance, if any.protected voiddestroyInstance(T instance) Callback for destroying a singleton instance.protected BeanFactoryReturn the BeanFactory that this bean runs in.protected TypeConverterObtain a bean type converter from the BeanFactory that this bean runs in.private TDetermine an 'early singleton' instance, exposed in case of a circular reference.protected Class<?>[]Return an array of interfaces that a singleton object exposed by this FactoryBean is supposed to implement, for use with an 'early singleton proxy' that will be exposed in case of a circular reference.final TExpose the singleton instance or create a new prototype instance.abstract Class<?>This abstract method declaration mirrors the method in the FactoryBean interface, for a consistent offering of abstract template methods.private TExpose the singleton instance (for access through the 'early singleton' proxy).booleanvoidsetBeanClassLoader(ClassLoader classLoader) voidsetBeanFactory(BeanFactory beanFactory) voidsetSingleton(boolean singleton) Set if a singleton should be created, or a new object on each request otherwise.
-
Field Details
-
singleton
private boolean singleton -
beanClassLoader
-
beanFactory
-
initialized
private boolean initialized -
singletonInstance
-
earlySingletonInstance
-
-
Constructor Details
-
AbstractFactoryBean
public AbstractFactoryBean()
-
-
Method Details
-
setSingleton
public void setSingleton(boolean singleton) Set if a singleton should be created, or a new object on each request otherwise. Default istrue(a singleton).- Parameters:
singleton- flag to set
-
isSingleton
public boolean isSingleton()- Specified by:
isSingletonin interfaceFactoryBean<T>
-
setBeanClassLoader
- Specified by:
setBeanClassLoaderin interfaceBeanClassLoaderAware
-
setBeanFactory
- Specified by:
setBeanFactoryin interfaceBeanFactoryAware
-
getBeanFactory
Return the BeanFactory that this bean runs in.- Returns:
- bean factory
-
getBeanTypeConverter
Obtain a bean type converter from the BeanFactory that this bean runs in. This is typically a fresh instance for each call, since TypeConverters are usually not thread-safe.Falls back to a SimpleTypeConverter when not running in a BeanFactory.
- Returns:
- type converter
- See Also:
-
afterPropertiesSet
Eagerly create the singleton instance, if necessary.- Specified by:
afterPropertiesSetin interfaceInitializingBean- Throws:
Exception
-
getObject
Expose the singleton instance or create a new prototype instance.- Specified by:
getObjectin interfaceFactoryBean<T>- Throws:
Exception- See Also:
-
getEarlySingletonInstance
Determine an 'early singleton' instance, exposed in case of a circular reference. Not called in a non-circular scenario.- Returns:
- early singleton
- Throws:
Exception- on error
-
getSingletonInstance
Expose the singleton instance (for access through the 'early singleton' proxy).- Returns:
- the singleton instance that this FactoryBean holds
- Throws:
IllegalStateException- if the singleton instance is not initialized
-
destroy
Destroy the singleton instance, if any.- Specified by:
destroyin interfaceDisposableBean- Throws:
Exception- See Also:
-
getObjectType
This abstract method declaration mirrors the method in the FactoryBean interface, for a consistent offering of abstract template methods.- Specified by:
getObjectTypein interfaceFactoryBean<T>- See Also:
-
createInstance
Template method that subclasses must override to construct the object returned by this factory.Invoked on initialization of this FactoryBean in case of a singleton; else, on each
getObject()call.- Returns:
- the object returned by this factory
- Throws:
Exception- if an exception occurred during object creation- See Also:
-
getEarlySingletonInterfaces
Return an array of interfaces that a singleton object exposed by this FactoryBean is supposed to implement, for use with an 'early singleton proxy' that will be exposed in case of a circular reference.The default implementation returns this FactoryBean's object type, provided that it is an interface, or
nullotherwise. The latter indicates that early singleton access is not supported by this FactoryBean. This will lead to a FactoryBeanNotInitializedException getting thrown.- Returns:
- the interfaces to use for 'early singletons',
or
nullto indicate a FactoryBeanNotInitializedException - See Also:
-
destroyInstance
Callback for destroying a singleton instance. Subclasses may override this to destroy the previously created instance.The default implementation is empty.
- Parameters:
instance- the singleton instance, as returned bycreateInstance()- Throws:
Exception- in case of shutdown errors- See Also:
-