Interface ObjectProvider<T>
- Type Parameters:
T
- the object type
- All Superinterfaces:
Iterable<T>
,ObjectFactory<T>
ObjectFactory
designed specifically for injection points,
allowing for programmatic optionality and lenient not-unique handling.
In a BeanFactory
environment, every ObjectProvider
obtained
from the factory will be bound to its BeanFactory
for a specific bean
type, matching all provider calls against factory-registered bean definitions.
As of 5.1, this interface extends Iterable
and provides Stream
support. It can be therefore be used in for
loops, provides Iterable.forEach(java.util.function.Consumer<? super T>)
iteration and allows for collection-style stream()
access.
As of 6.2, this interface declares default implementations for all methods.
This makes it easier to implement in a custom fashion, for example, for unit tests.
For typical purposes, implement stream()
to enable all other methods.
Alternatively, you may implement the specific methods that your callers expect,
for example, just getObject()
or getIfAvailable()
.
- Since:
- 4.3
- Author:
- Juergen Hoeller
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault T
Return an instance (possibly shared or independent) of the object managed by this factory.default T
getIfAvailable
(Supplier<T> defaultSupplier) Return an instance (possibly shared or independent) of the object managed by this factory.default T
Return an instance (possibly shared or independent) of the object managed by this factory.default T
getIfUnique
(Supplier<T> defaultSupplier) Return an instance (possibly shared or independent) of the object managed by this factory.default T
Return an instance (possibly shared or independent) of the object managed by this factory.default T
Return an instance (possibly shared or independent) of the object managed by this factory.default void
ifAvailable
(Consumer<T> dependencyConsumer) Consume an instance (possibly shared or independent) of the object managed by this factory, if available.default void
Consume an instance (possibly shared or independent) of the object managed by this factory, if unique.iterator()
Return anIterator
over all matching object instances, without specific ordering guarantees (but typically in registration order).Return a sequentialStream
over all matching object instances, pre-ordered according to the factory's common order comparator.stream()
Return a sequentialStream
over all matching object instances, without specific ordering guarantees (but typically in registration order).Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
getObject
Description copied from interface:ObjectFactory
Return an instance (possibly shared or independent) of the object managed by this factory.- Specified by:
getObject
in interfaceObjectFactory<T>
- Returns:
- the resulting instance
- Throws:
BeansException
- in case of creation errors
-
getObject
Return an instance (possibly shared or independent) of the object managed by this factory.Allows for specifying explicit construction arguments, along the lines of
BeanFactory.getBean(String, Object...)
.- Parameters:
args
- arguments to use when creating a corresponding instance- Returns:
- an instance of the bean
- Throws:
BeansException
- in case of creation errors- See Also:
-
getIfAvailable
Return an instance (possibly shared or independent) of the object managed by this factory.- Returns:
- an instance of the bean, or
null
if not available - Throws:
BeansException
- in case of creation errors- See Also:
-
getIfAvailable
Return an instance (possibly shared or independent) of the object managed by this factory.- Parameters:
defaultSupplier
- a callback for supplying a default object if none is present in the factory- Returns:
- an instance of the bean, or the supplied default object if no such bean is available
- Throws:
BeansException
- in case of creation errors- Since:
- 5.0
- See Also:
-
ifAvailable
Consume an instance (possibly shared or independent) of the object managed by this factory, if available.- Parameters:
dependencyConsumer
- a callback for processing the target object if available (not called otherwise)- Throws:
BeansException
- in case of creation errors- Since:
- 5.0
- See Also:
-
getIfUnique
Return an instance (possibly shared or independent) of the object managed by this factory.- Returns:
- an instance of the bean, or
null
if not available or not unique (i.e. multiple candidates found with none marked as primary) - Throws:
BeansException
- in case of creation errors- See Also:
-
getIfUnique
Return an instance (possibly shared or independent) of the object managed by this factory.- Parameters:
defaultSupplier
- a callback for supplying a default object if no unique candidate is present in the factory- Returns:
- an instance of the bean, or the supplied default object if no such bean is available or if it is not unique in the factory (i.e. multiple candidates found with none marked as primary)
- Throws:
BeansException
- in case of creation errors- Since:
- 5.0
- See Also:
-
ifUnique
Consume an instance (possibly shared or independent) of the object managed by this factory, if unique.- Parameters:
dependencyConsumer
- a callback for processing the target object if unique (not called otherwise)- Throws:
BeansException
- in case of creation errors- Since:
- 5.0
- See Also:
-
iterator
Return anIterator
over all matching object instances, without specific ordering guarantees (but typically in registration order). -
stream
Return a sequentialStream
over all matching object instances, without specific ordering guarantees (but typically in registration order).- Since:
- 5.1
- See Also:
-
orderedStream
Return a sequentialStream
over all matching object instances, pre-ordered according to the factory's common order comparator.In a standard Spring application context, this will be ordered according to
Ordered
conventions, and in case of annotation-based configuration also considering theOrder
annotation, analogous to multi-element injection points of list/array type.The default method applies an
OrderComparator
to thestream()
method. You may override this to apply anAnnotationAwareOrderComparator
if necessary.- Since:
- 5.1
- See Also:
-