Java org.springframework.beans.factory BeanFactoryUtils fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.beans.factory BeanFactoryUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.beans.factory BeanFactoryUtils.

The text is from its open source code.

Field

StringGENERATED_BEAN_NAME_SEPARATOR
Separator for generated bean names.

Method

String[]beanNamesForAnnotationIncludingAncestors(ListableBeanFactory lbf, Class annotationType)
Get all bean names whose Class has the supplied Annotation type, including those defined in ancestor factories, without creating any bean instances yet.
String[]beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, ResolvableType type)
Get all bean names for the given type, including those defined in ancestor factories.
String[]beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, Class type)
Get all bean names for the given type, including those defined in ancestor factories.
String[]beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, ResolvableType type, boolean includeNonSingletons, boolean allowEagerInit)
Get all bean names for the given type, including those defined in ancestor factories.
String[]beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, Class type, boolean includeNonSingletons, boolean allowEagerInit)
Get all bean names for the given type, including those defined in ancestor factories.
String[]beanNamesIncludingAncestors(ListableBeanFactory lbf)
Return all bean names in the factory, including ancestor factories.
TbeanOfType(ListableBeanFactory lbf, Class type)
Return a single bean of the given type or subtypes, not looking in ancestor factories.
TbeanOfTypeIncludingAncestors(ListableBeanFactory lbf, Class 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.
TbeanOfTypeIncludingAncestors(ListableBeanFactory lbf, Class 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.
MapbeansOfTypeIncludingAncestors(ListableBeanFactory lbf, Class 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.
MapbeansOfTypeIncludingAncestors(ListableBeanFactory lbf, Class 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.
booleanisFactoryDereference(@Nullable String name)
Return whether the given name is a factory dereference (beginning with the factory dereference prefix).
StringoriginalBeanName(String name)
Extract the "raw" bean name from the given (potentially generated) bean name, excluding any "#..."
StringtransformedBeanName(String name)
Return the actual bean name, stripping out the factory dereference prefix (if any, also stripping repeated factory prefixes if found).