Uses of Class
org.springframework.beans.PropertyAccessException
Packages that use PropertyAccessException Package Description org.springframework.beans This package contains interfaces and classes for manipulating Java beans.org.springframework.validation Provides data binding and validation functionality, for usage in business and/or UI layers.org.springframework.web.method.annotation Support classes for annotation-based handler method processing.Uses of PropertyAccessException in org.springframework.beans
Subclasses of PropertyAccessException in org.springframework.beans Modifier and Type Class Description classConversionNotSupportedExceptionException thrown when no suitable editor or converter can be found for a bean property.classMethodInvocationExceptionThrown when a bean property getter or setter method throws an exception, analogous to an InvocationTargetException.classTypeMismatchExceptionException thrown on a type mismatch when trying to set a bean property.Methods in org.springframework.beans that return PropertyAccessException Modifier and Type Method Description PropertyAccessExceptionPropertyBatchUpdateException. getPropertyAccessException(String propertyName)Return the exception for this field, ornullif there isn't any.PropertyAccessException[]PropertyBatchUpdateException. getPropertyAccessExceptions()Return an array of the propertyAccessExceptions stored in this object.Constructors in org.springframework.beans with parameters of type PropertyAccessException Constructor Description PropertyBatchUpdateException(PropertyAccessException[] propertyAccessExceptions)Create a new PropertyBatchUpdateException.Uses of PropertyAccessException in org.springframework.validation
Methods in org.springframework.validation with parameters of type PropertyAccessException Modifier and Type Method Description voidBindingErrorProcessor. processPropertyAccessException(PropertyAccessException ex, BindingResult bindingResult)Translate the givenPropertyAccessExceptionto an appropriate error registered on the givenErrorsinstance.voidDefaultBindingErrorProcessor. processPropertyAccessException(PropertyAccessException ex, BindingResult bindingResult)Uses of PropertyAccessException in org.springframework.web.method.annotation
Subclasses of PropertyAccessException in org.springframework.web.method.annotation Modifier and Type Class Description classMethodArgumentConversionNotSupportedExceptionA ConversionNotSupportedException raised while resolving a method argument.classMethodArgumentTypeMismatchExceptionA TypeMismatchException raised while resolving a controller method argument.