Uses of Class
org.springframework.beans.FatalBeanException
Package
Description
This package contains interfaces and classes for manipulating Java beans.
The core package implementing Spring's lightweight Inversion of Control (IoC) container.
Support infrastructure for bean definition parsing.
Classes supporting the
org.springframework.beans.factory
package.Contains an abstract XML-based
BeanFactory
implementation,
including a standard "spring-beans" XSD.This package builds on the beans package to add support for
message sources and for the Observer design pattern, and the
ability for application objects to obtain resources using a
consistent API.
-
Uses of FatalBeanException in org.springframework.beans
Modifier and TypeClassDescriptionclass
Exception thrown when instantiation of a bean failed.class
Exception thrown when referring to an invalid bean property.class
Exception thrown on an attempt to get the value of a property that isn't readable, because there's no getter method.class
Exception thrown on an attempt to set the value of a property that is not writable (typically because there is no setter method).class
Exception thrown when navigation of a valid nested property path encounters a NullPointerException. -
Uses of FatalBeanException in org.springframework.beans.factory
Modifier and TypeClassDescriptionclass
Exception thrown when a BeanFactory encounters an error when attempting to create a bean from a bean definition.class
Exception thrown in case of a bean being requested despite bean creation currently not being allowed (for example, during the shutdown phase of a bean factory).class
Exception thrown in case of a reference to a bean that's currently in creation.class
Exception thrown when a BeanFactory encounters an invalid bean definition: e.g.class
Exception that indicates an expression evaluation attempt having failed.class
Exception that a bean implementation is suggested to throw if its own factory-aware initialization code fails.class
Exception thrown when a bean instance has been requested for a bean definition which has been marked as abstract.class
Exception thrown when the BeanFactory cannot load the specified class of a given bean.class
Exception to be thrown from a FactoryBean'sgetObject()
method if the bean is not fully initialized yet, for example because it is involved in a circular reference.class
Exception thrown when a bean depends on other beans or simple properties that were not specified in the bean factory definition, although dependency checking was enabled. -
Uses of FatalBeanException in org.springframework.beans.factory.parsing
Modifier and TypeClassDescriptionclass
Exception thrown when a bean definition reader encounters an error during the parsing process. -
Uses of FatalBeanException in org.springframework.beans.factory.support
Modifier and TypeClassDescriptionclass
Subclass ofBeanDefinitionStoreException
indicating an invalid override attempt: typically registering a new definition for the same bean name whileDefaultListableBeanFactory.isAllowBeanDefinitionOverriding()
isfalse
.class
Exception thrown when the validation of a bean definition failed.class
A subclass ofBeanCreationException
which indicates that the target scope is not active, e.g. -
Uses of FatalBeanException in org.springframework.beans.factory.xml
Modifier and TypeClassDescriptionclass
XML-specific BeanDefinitionStoreException subclass that wraps aSAXException
, typically aSAXParseException
which contains information about the error location. -
Uses of FatalBeanException in org.springframework.context
Modifier and TypeClassDescriptionclass
Exception thrown during application context initialization.