Class BeanFactoryUtils
ListableBeanFactory interface.
Returns bean counts, bean names or bean instances, taking into account the nesting hierarchy of a bean factory (which the methods defined on the ListableBeanFactory interface don't, in contrast to the methods defined on the BeanFactory interface).
NOTE: It is generally preferable to use ObjectProvider.stream()
via BeanFactory.getBeanProvider(Class) instead of this utility class.
- Since:
- 04.07.2003
- Author:
- Rod Johnson, Juergen Hoeller, Chris Beams
- See Also:
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic String[]beanNamesForAnnotationIncludingAncestors(ListableBeanFactory lbf, Class<? extends Annotation> annotationType) Get all bean names whoseClasshas the suppliedAnnotationtype, including those defined in ancestor factories, without creating any bean instances yet.static String[]beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, Class<?> type) Get all bean names for the given type, including those defined in ancestor factories.static String[]beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, Class<?> type, boolean includeNonSingletons, boolean allowEagerInit) Get all bean names for the given type, including those defined in ancestor factories.static String[]Get all bean names for the given type, including those defined in ancestor factories.static String[]beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, ResolvableType type, boolean includeNonSingletons, boolean allowEagerInit) Get all bean names for the given type, including those defined in ancestor factories.static String[]Return all bean names in the factory, including ancestor factories.static <T> TbeanOfType(ListableBeanFactory lbf, Class<T> type) Return a single bean of the given type or subtypes, not looking in ancestor factories.static <T> TbeanOfType(ListableBeanFactory lbf, Class<T> type, boolean includeNonSingletons, boolean allowEagerInit) Return a single bean of the given type or subtypes, not looking in ancestor factories.static <T> TbeanOfTypeIncludingAncestors(ListableBeanFactory lbf, Class<T> type) Return a single bean of the given type or subtypes, also picking up beans defined in ancestor bean factories if the current bean factory is a HierarchicalBeanFactory.static <T> TbeanOfTypeIncludingAncestors(ListableBeanFactory lbf, Class<T> type, boolean includeNonSingletons, boolean allowEagerInit) Return a single bean of the given type or subtypes, also picking up beans defined in ancestor bean factories if the current bean factory is a HierarchicalBeanFactory.beansOfTypeIncludingAncestors(ListableBeanFactory lbf, Class<T> type) Return all beans of the given type or subtypes, also picking up beans defined in ancestor bean factories if the current bean factory is a HierarchicalBeanFactory.beansOfTypeIncludingAncestors(ListableBeanFactory lbf, Class<T> type, boolean includeNonSingletons, boolean allowEagerInit) Return all beans of the given type or subtypes, also picking up beans defined in ancestor bean factories if the current bean factory is a HierarchicalBeanFactory.static intCount all beans in any hierarchy in which this factory participates.static booleanReturn whether the given name is a factory dereference (beginning with the factory dereference prefix).static booleanReturn whether the given name is a bean name which has been generated by the default naming strategy (containing a "#..." part).static StringoriginalBeanName(String name) Extract the "raw" bean name from the given (potentially generated) bean name, excluding any "#..." suffixes which might have been added for uniqueness.static StringtransformedBeanName(String name) Return the actual bean name, stripping out the factory dereference prefix (if any, also stripping repeated factory prefixes if found).
- 
Field Details- 
GENERATED_BEAN_NAME_SEPARATORSeparator for generated bean names. If a class name or parent name is not unique, "#1", "#2" etc will be appended, until the name becomes unique.- See Also:
 
 
- 
- 
Constructor Details- 
BeanFactoryUtilspublic BeanFactoryUtils()
 
- 
- 
Method Details- 
isFactoryDereference
- 
transformedBeanName
- 
isGeneratedBeanNameReturn whether the given name is a bean name which has been generated by the default naming strategy (containing a "#..." part).- Parameters:
- name- the name of the bean
- Returns:
- whether the given name is a generated bean name
- See Also:
 
- 
originalBeanName
- 
countBeansIncludingAncestorsCount all beans in any hierarchy in which this factory participates. Includes counts of ancestor bean factories.Beans that are "overridden" (specified in a descendant factory with the same name) are only counted once. - Parameters:
- lbf- the bean factory
- Returns:
- count of beans including those defined in ancestor factories
- See Also:
 
- 
beanNamesIncludingAncestorsReturn all bean names in the factory, including ancestor factories.- Parameters:
- lbf- the bean factory
- Returns:
- the array of matching bean names, or an empty array if none
- See Also:
 
- 
beanNamesForTypeIncludingAncestorspublic static String[] beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, ResolvableType type) Get all bean names for the given type, including those defined in ancestor factories. Will return unique names in case of overridden bean definitions.Does consider objects created by FactoryBeans, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. This version of beanNamesForTypeIncludingAncestorsautomatically includes prototypes and FactoryBeans.- Parameters:
- lbf- the bean factory
- type- the type that beans must match (as a- ResolvableType)
- Returns:
- the array of matching bean names, or an empty array if none
- Since:
- 4.2
- See Also:
 
- 
beanNamesForTypeIncludingAncestorspublic static String[] beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, ResolvableType type, boolean includeNonSingletons, boolean allowEagerInit) Get all bean names for the given type, including those defined in ancestor factories. Will return unique names in case of overridden bean definitions.Does consider objects created by FactoryBeans if the "allowEagerInit" flag is set, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. If "allowEagerInit" is not set, only raw FactoryBeans will be checked (which doesn't require initialization of each FactoryBean). - Parameters:
- lbf- the bean factory
- type- the type that beans must match (as a- ResolvableType)
- includeNonSingletons- whether to include prototype or scoped beans too or just singletons (also applies to FactoryBeans)
- allowEagerInit- whether to initialize lazy-init singletons and objects created by FactoryBeans (or by factory methods with a "factory-bean" reference) for the type check. Note that FactoryBeans need to be eagerly initialized to determine their type: So be aware that passing in "true" for this flag will initialize FactoryBeans and "factory-bean" references.
- Returns:
- the array of matching bean names, or an empty array if none
- Since:
- 5.2
- See Also:
 
- 
beanNamesForTypeIncludingAncestorsGet all bean names for the given type, including those defined in ancestor factories. Will return unique names in case of overridden bean definitions.Does consider objects created by FactoryBeans, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. This version of beanNamesForTypeIncludingAncestorsautomatically includes prototypes and FactoryBeans.- Parameters:
- lbf- the bean factory
- type- the type that beans must match (as a- Class)
- Returns:
- the array of matching bean names, or an empty array if none
- See Also:
 
- 
beanNamesForTypeIncludingAncestorspublic static String[] beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, Class<?> type, boolean includeNonSingletons, boolean allowEagerInit) Get all bean names for the given type, including those defined in ancestor factories. Will return unique names in case of overridden bean definitions.Does consider objects created by FactoryBeans if the "allowEagerInit" flag is set, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. If "allowEagerInit" is not set, only raw FactoryBeans will be checked (which doesn't require initialization of each FactoryBean). - Parameters:
- lbf- the bean factory
- type- the type that beans must match
- includeNonSingletons- whether to include prototype or scoped beans too or just singletons (also applies to FactoryBeans)
- allowEagerInit- whether to initialize lazy-init singletons and objects created by FactoryBeans (or by factory methods with a "factory-bean" reference) for the type check. Note that FactoryBeans need to be eagerly initialized to determine their type: So be aware that passing in "true" for this flag will initialize FactoryBeans and "factory-bean" references.
- Returns:
- the array of matching bean names, or an empty array if none
- See Also:
 
- 
beanNamesForAnnotationIncludingAncestorspublic static String[] beanNamesForAnnotationIncludingAncestors(ListableBeanFactory lbf, Class<? extends Annotation> annotationType) Get all bean names whoseClasshas the suppliedAnnotationtype, including those defined in ancestor factories, without creating any bean instances yet. Will return unique names in case of overridden bean definitions.- Parameters:
- lbf- the bean factory
- annotationType- the type of annotation to look for
- Returns:
- the array of matching bean names, or an empty array if none
- Since:
- 5.0
- See Also:
 
- 
beansOfTypeIncludingAncestorspublic static <T> Map<String,T> beansOfTypeIncludingAncestors(ListableBeanFactory lbf, Class<T> type) throws BeansException Return all beans of the given type or subtypes, also picking up beans defined in ancestor bean factories if the current bean factory is a HierarchicalBeanFactory. The returned Map will only contain beans of this type.Does consider objects created by FactoryBeans, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. Note: Beans of the same name will take precedence at the 'lowest' factory level, i.e. such beans will be returned from the lowest factory that they are being found in, hiding corresponding beans in ancestor factories. This feature allows for 'replacing' beans by explicitly choosing the same bean name in a child factory; the bean in the ancestor factory won't be visible then, not even for by-type lookups. - Parameters:
- lbf- the bean factory
- type- the type of bean to match
- Returns:
- the Map of matching bean instances, or an empty Map if none
- Throws:
- BeansException- if a bean could not be created
- See Also:
 
- 
beansOfTypeIncludingAncestorspublic static <T> Map<String,T> beansOfTypeIncludingAncestors(ListableBeanFactory lbf, Class<T> type, boolean includeNonSingletons, boolean allowEagerInit) throws BeansException Return all beans of the given type or subtypes, also picking up beans defined in ancestor bean factories if the current bean factory is a HierarchicalBeanFactory. The returned Map will only contain beans of this type.Does consider objects created by FactoryBeans if the "allowEagerInit" flag is set, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. If "allowEagerInit" is not set, only raw FactoryBeans will be checked (which doesn't require initialization of each FactoryBean). Note: Beans of the same name will take precedence at the 'lowest' factory level, i.e. such beans will be returned from the lowest factory that they are being found in, hiding corresponding beans in ancestor factories. This feature allows for 'replacing' beans by explicitly choosing the same bean name in a child factory; the bean in the ancestor factory won't be visible then, not even for by-type lookups. - Parameters:
- lbf- the bean factory
- type- the type of bean to match
- includeNonSingletons- whether to include prototype or scoped beans too or just singletons (also applies to FactoryBeans)
- allowEagerInit- whether to initialize lazy-init singletons and objects created by FactoryBeans (or by factory methods with a "factory-bean" reference) for the type check. Note that FactoryBeans need to be eagerly initialized to determine their type: So be aware that passing in "true" for this flag will initialize FactoryBeans and "factory-bean" references.
- Returns:
- the Map of matching bean instances, or an empty Map if none
- Throws:
- BeansException- if a bean could not be created
- See Also:
 
- 
beanOfTypeIncludingAncestorspublic static <T> T beanOfTypeIncludingAncestors(ListableBeanFactory lbf, Class<T> type) throws BeansException Return a single bean of the given type or subtypes, also picking up beans defined in ancestor bean factories if the current bean factory is a HierarchicalBeanFactory. Useful convenience method when we expect a single bean and don't care about the bean name.Does consider objects created by FactoryBeans, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. This version of beanOfTypeIncludingAncestorsautomatically includes prototypes and FactoryBeans.Note: Beans of the same name will take precedence at the 'lowest' factory level, i.e. such beans will be returned from the lowest factory that they are being found in, hiding corresponding beans in ancestor factories. This feature allows for 'replacing' beans by explicitly choosing the same bean name in a child factory; the bean in the ancestor factory won't be visible then, not even for by-type lookups. - Parameters:
- lbf- the bean factory
- type- the type of bean to match
- Returns:
- the matching bean instance
- Throws:
- NoSuchBeanDefinitionException- if no bean of the given type was found
- NoUniqueBeanDefinitionException- if more than one bean of the given type was found
- BeansException- if the bean could not be created
- See Also:
 
- 
beanOfTypeIncludingAncestorspublic static <T> T beanOfTypeIncludingAncestors(ListableBeanFactory lbf, Class<T> type, boolean includeNonSingletons, boolean allowEagerInit) throws BeansException Return a single bean of the given type or subtypes, also picking up beans defined in ancestor bean factories if the current bean factory is a HierarchicalBeanFactory. Useful convenience method when we expect a single bean and don't care about the bean name.Does consider objects created by FactoryBeans if the "allowEagerInit" flag is set, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. If "allowEagerInit" is not set, only raw FactoryBeans will be checked (which doesn't require initialization of each FactoryBean). Note: Beans of the same name will take precedence at the 'lowest' factory level, i.e. such beans will be returned from the lowest factory that they are being found in, hiding corresponding beans in ancestor factories. This feature allows for 'replacing' beans by explicitly choosing the same bean name in a child factory; the bean in the ancestor factory won't be visible then, not even for by-type lookups. - Parameters:
- lbf- the bean factory
- type- the type of bean to match
- includeNonSingletons- whether to include prototype or scoped beans too or just singletons (also applies to FactoryBeans)
- allowEagerInit- whether to initialize lazy-init singletons and objects created by FactoryBeans (or by factory methods with a "factory-bean" reference) for the type check. Note that FactoryBeans need to be eagerly initialized to determine their type: So be aware that passing in "true" for this flag will initialize FactoryBeans and "factory-bean" references.
- Returns:
- the matching bean instance
- Throws:
- NoSuchBeanDefinitionException- if no bean of the given type was found
- NoUniqueBeanDefinitionException- if more than one bean of the given type was found
- BeansException- if the bean could not be created
- See Also:
 
- 
beanOfTypeReturn a single bean of the given type or subtypes, not looking in ancestor factories. Useful convenience method when we expect a single bean and don't care about the bean name.Does consider objects created by FactoryBeans, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. This version of beanOfTypeautomatically includes prototypes and FactoryBeans.- Parameters:
- lbf- the bean factory
- type- the type of bean to match
- Returns:
- the matching bean instance
- Throws:
- NoSuchBeanDefinitionException- if no bean of the given type was found
- NoUniqueBeanDefinitionException- if more than one bean of the given type was found
- BeansException- if the bean could not be created
- See Also:
 
- 
beanOfTypepublic static <T> T beanOfType(ListableBeanFactory lbf, Class<T> type, boolean includeNonSingletons, boolean allowEagerInit) throws BeansException Return a single bean of the given type or subtypes, not looking in ancestor factories. Useful convenience method when we expect a single bean and don't care about the bean name.Does consider objects created by FactoryBeans if the "allowEagerInit" flag is set, which means that FactoryBeans will get initialized. If the object created by the FactoryBean doesn't match, the raw FactoryBean itself will be matched against the type. If "allowEagerInit" is not set, only raw FactoryBeans will be checked (which doesn't require initialization of each FactoryBean). - Parameters:
- lbf- the bean factory
- type- the type of bean to match
- includeNonSingletons- whether to include prototype or scoped beans too or just singletons (also applies to FactoryBeans)
- allowEagerInit- whether to initialize lazy-init singletons and objects created by FactoryBeans (or by factory methods with a "factory-bean" reference) for the type check. Note that FactoryBeans need to be eagerly initialized to determine their type: So be aware that passing in "true" for this flag will initialize FactoryBeans and "factory-bean" references.
- Returns:
- the matching bean instance
- Throws:
- NoSuchBeanDefinitionException- if no bean of the given type was found
- NoUniqueBeanDefinitionException- if more than one bean of the given type was found
- BeansException- if the bean could not be created
- See Also:
 
 
-