Class ServiceLoaderFactoryBean
java.lang.Object
org.springframework.beans.factory.config.AbstractFactoryBean<Object>
org.springframework.beans.factory.serviceloader.AbstractServiceLoaderBasedFactoryBean
org.springframework.beans.factory.serviceloader.ServiceLoaderFactoryBean
- All Implemented Interfaces:
Aware
,BeanClassLoaderAware
,BeanFactoryAware
,DisposableBean
,FactoryBean<Object>
,InitializingBean
public class ServiceLoaderFactoryBean
extends AbstractServiceLoaderBasedFactoryBean
implements BeanClassLoaderAware
FactoryBean
that exposes the
JDK 1.6 ServiceLoader
for the configured service class.- Since:
- 2.5
- Author:
- Juergen Hoeller
- See Also:
-
Field Summary
Fields inherited from class org.springframework.beans.factory.config.AbstractFactoryBean
logger
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected Object
getObjectToExpose
(ServiceLoader<?> serviceLoader) Determine the actual object to expose for the given ServiceLoader.Class<?>
This abstract method declaration mirrors the method in the FactoryBean interface, for a consistent offering of abstract template methods.Methods inherited from class org.springframework.beans.factory.serviceloader.AbstractServiceLoaderBasedFactoryBean
createInstance, getServiceType, setBeanClassLoader, setServiceType
Methods inherited from class org.springframework.beans.factory.config.AbstractFactoryBean
afterPropertiesSet, destroy, destroyInstance, getBeanFactory, getBeanTypeConverter, getEarlySingletonInterfaces, getObject, isSingleton, setBeanFactory, setSingleton
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.BeanClassLoaderAware
setBeanClassLoader
-
Constructor Details
-
ServiceLoaderFactoryBean
public ServiceLoaderFactoryBean()
-
-
Method Details
-
getObjectToExpose
Description copied from class:AbstractServiceLoaderBasedFactoryBean
Determine the actual object to expose for the given ServiceLoader.Left to concrete subclasses.
- Specified by:
getObjectToExpose
in classAbstractServiceLoaderBasedFactoryBean
- Parameters:
serviceLoader
- the ServiceLoader for the configured service class- Returns:
- the object to expose
-
getObjectType
Description copied from class:AbstractFactoryBean
This abstract method declaration mirrors the method in the FactoryBean interface, for a consistent offering of abstract template methods.- Specified by:
getObjectType
in interfaceFactoryBean<Object>
- Specified by:
getObjectType
in classAbstractFactoryBean<Object>
- Returns:
- the type of object that this FactoryBean creates,
or
null
if not known at the time of the call - See Also:
-