| org.springframework.beans.factory.BeanCreationException org.springframework.beans.factory.UnsatisfiedDependencyException
UnsatisfiedDependencyException | public class UnsatisfiedDependencyException extends BeanCreationException (Code) | | 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.
author: Rod Johnson author: Juergen Hoeller since: 03.09.2003 |
UnsatisfiedDependencyException | public UnsatisfiedDependencyException(String resourceDescription, String beanName, String propertyName, String msg)(Code) | | Create a new UnsatisfiedDependencyException.
Parameters: resourceDescription - description of the resourcethat the bean definition came from Parameters: beanName - the name of the bean requested Parameters: propertyName - the name of the bean property thatcouldn't be satisfied Parameters: msg - the detail message |
UnsatisfiedDependencyException | public UnsatisfiedDependencyException(String resourceDescription, String beanName, int ctorArgIndex, Class ctorArgType, String msg)(Code) | | Create a new UnsatisfiedDependencyException.
Parameters: resourceDescription - description of the resourcethat the bean definition came from Parameters: beanName - the name of the bean requested Parameters: ctorArgIndex - the index of the constructor argumentthat couldn't be satisfied Parameters: ctorArgType - the type of the constructor argumentthat couldn't be satisfied Parameters: msg - the detail message |
|
|