Uses of Class
org.springframework.beans.factory.NoSuchBeanDefinitionException
Packages that use NoSuchBeanDefinitionException
Package
Description
The core package implementing Spring's lightweight Inversion of Control (IoC) container.
SPI interfaces and configuration-related convenience classes for bean factories.
Classes supporting the
org.springframework.beans.factory package.-
Uses of NoSuchBeanDefinitionException in org.springframework.beans.factory
Subclasses of NoSuchBeanDefinitionException in org.springframework.beans.factoryModifier and TypeClassDescriptionclassException thrown when aBeanFactoryis asked for a bean instance for which multiple matching candidates have been found when only one matching bean was expected.Methods in org.springframework.beans.factory that throw NoSuchBeanDefinitionExceptionModifier and TypeMethodDescription<A extends Annotation>
Set<A>ListableBeanFactory.findAllAnnotationsOnBean(String beanName, Class<A> annotationType, boolean allowFactoryBeanInit) Find allAnnotationinstances ofannotationTypeon the specified bean, traversing its interfaces and superclasses if no annotation can be found on the given class itself, as well as checking the bean's factory method (if any).<A extends Annotation>
AListableBeanFactory.findAnnotationOnBean(String beanName, Class<A> annotationType) Find anAnnotationofannotationTypeon the specified bean, traversing its interfaces and superclasses if no annotation can be found on the given class itself, as well as checking the bean's factory method (if any).<A extends Annotation>
AListableBeanFactory.findAnnotationOnBean(String beanName, Class<A> annotationType, boolean allowFactoryBeanInit) Find anAnnotationofannotationTypeon the specified bean, traversing its interfaces and superclasses if no annotation can be found on the given class itself, as well as checking the bean's factory method (if any).Class<?>Determine the type of the bean with the given name.Class<?>Determine the type of the bean with the given name.booleanBeanFactory.isPrototype(String name) Is this bean a prototype? That is, willBeanFactory.getBean(java.lang.String)always return independent instances?booleanBeanFactory.isSingleton(String name) Is this bean a shared singleton? That is, willBeanFactory.getBean(java.lang.String)always return the same instance?booleanBeanFactory.isTypeMatch(String name, Class<?> typeToMatch) Check whether the bean with the given name matches the specified type.booleanBeanFactory.isTypeMatch(String name, org.springframework.core.ResolvableType typeToMatch) Check whether the bean with the given name matches the specified type. -
Uses of NoSuchBeanDefinitionException in org.springframework.beans.factory.config
Methods in org.springframework.beans.factory.config that throw NoSuchBeanDefinitionExceptionModifier and TypeMethodDescriptionConfigurableListableBeanFactory.getBeanDefinition(String beanName) Return the registered BeanDefinition for the specified bean, allowing access to its property values and constructor argument value (which can be modified during bean factory post-processing).ConfigurableBeanFactory.getMergedBeanDefinition(String beanName) Return a merged BeanDefinition for the given bean name, merging a child bean definition with its parent if necessary.booleanConfigurableListableBeanFactory.isAutowireCandidate(String beanName, DependencyDescriptor descriptor) Determine whether the specified bean qualifies as an autowire candidate, to be injected into other beans which declare a dependency of matching type.booleanConfigurableBeanFactory.isFactoryBean(String name) Determine whether the bean with the given name is a FactoryBean. -
Uses of NoSuchBeanDefinitionException in org.springframework.beans.factory.support
Methods in org.springframework.beans.factory.support that throw NoSuchBeanDefinitionExceptionModifier and TypeMethodDescription<A extends Annotation>
Set<A>DefaultListableBeanFactory.findAllAnnotationsOnBean(String beanName, Class<A> annotationType, boolean allowFactoryBeanInit) <A extends Annotation>
Set<A>StaticListableBeanFactory.findAllAnnotationsOnBean(String beanName, Class<A> annotationType, boolean allowFactoryBeanInit) <A extends Annotation>
ADefaultListableBeanFactory.findAnnotationOnBean(String beanName, Class<A> annotationType) <A extends Annotation>
ADefaultListableBeanFactory.findAnnotationOnBean(String beanName, Class<A> annotationType, boolean allowFactoryBeanInit) <A extends Annotation>
AStaticListableBeanFactory.findAnnotationOnBean(String beanName, Class<A> annotationType) <A extends Annotation>
AStaticListableBeanFactory.findAnnotationOnBean(String beanName, Class<A> annotationType, boolean allowFactoryBeanInit) BeanDefinitionRegistry.getBeanDefinition(String beanName) Return the BeanDefinition for the given bean name.DefaultListableBeanFactory.getBeanDefinition(String beanName) SimpleBeanDefinitionRegistry.getBeanDefinition(String beanName) Class<?>Class<?>Class<?>Class<?>booleanDefaultListableBeanFactory.isAutowireCandidate(String beanName, DependencyDescriptor descriptor) protected booleanDefaultListableBeanFactory.isAutowireCandidate(String beanName, DependencyDescriptor descriptor, AutowireCandidateResolver resolver) Determine whether the specified bean definition qualifies as an autowire candidate, to be injected into other beans which declare a dependency of matching type.booleanAbstractBeanFactory.isFactoryBean(String name) booleanAbstractBeanFactory.isPrototype(String name) booleanStaticListableBeanFactory.isPrototype(String name) booleanAbstractBeanFactory.isSingleton(String name) booleanStaticListableBeanFactory.isSingleton(String name) booleanAbstractBeanFactory.isTypeMatch(String name, Class<?> typeToMatch) booleanAbstractBeanFactory.isTypeMatch(String name, org.springframework.core.ResolvableType typeToMatch) protected booleanAbstractBeanFactory.isTypeMatch(String name, org.springframework.core.ResolvableType typeToMatch, boolean allowFactoryBeanInit) Internal extended variant ofAbstractBeanFactory.isTypeMatch(String, ResolvableType)to check whether the bean with the given name matches the specified type.booleanStaticListableBeanFactory.isTypeMatch(String name, Class<?> typeToMatch) booleanStaticListableBeanFactory.isTypeMatch(String name, org.springframework.core.ResolvableType typeToMatch) voidBeanDefinitionRegistry.removeBeanDefinition(String beanName) Remove the BeanDefinition for the given name.voidDefaultListableBeanFactory.removeBeanDefinition(String beanName) voidSimpleBeanDefinitionRegistry.removeBeanDefinition(String beanName)