Class DefaultBindingErrorProcessor
java.lang.Object
org.springframework.validation.DefaultBindingErrorProcessor
- All Implemented Interfaces:
- BindingErrorProcessor
Default 
BindingErrorProcessor implementation.
Uses the "required" error code and the field name to resolve message codes for a missing field error.
Creates a FieldError for each PropertyAccessException
given, using the PropertyAccessException's error code ("typeMismatch",
"methodInvocation") for resolving message codes.
- Since:
- 1.2
- Author:
- Alef Arendsen, Juergen Hoeller
- See Also:
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected Object[]getArgumentsForBindError(String objectName, String field) Return FieldError arguments for a binding error on the given field.voidprocessMissingFieldError(String missingField, BindingResult bindingResult) Apply the missing field error to the given BindException.voidprocessPropertyAccessException(PropertyAccessException ex, BindingResult bindingResult) Translate the givenPropertyAccessExceptionto an appropriate error registered on the givenErrorsinstance.
- 
Field Details- 
MISSING_FIELD_ERROR_CODEError code that a missing field error (i.e. a required field not found in the list of property values) will be registered with: "required".- See Also:
 
 
- 
- 
Constructor Details- 
DefaultBindingErrorProcessorpublic DefaultBindingErrorProcessor()
 
- 
- 
Method Details- 
processMissingFieldErrorDescription copied from interface:BindingErrorProcessorApply the missing field error to the given BindException.Usually, a field error is created for a missing required field. - Specified by:
- processMissingFieldErrorin interface- BindingErrorProcessor
- Parameters:
- missingField- the field that was missing during binding
- bindingResult- the errors object to add the error(s) to. You can add more than just one error or maybe even ignore it. The- BindingResultobject features convenience utils such as a- resolveMessageCodesmethod to resolve an error code.
- See Also:
 
- 
processPropertyAccessExceptionDescription copied from interface:BindingErrorProcessorTranslate the givenPropertyAccessExceptionto an appropriate error registered on the givenErrorsinstance.Note that two error types are available: FieldErrorandObjectError. Usually, field errors are created, but in certain situations one might want to create a globalObjectErrorinstead.- Specified by:
- processPropertyAccessExceptionin interface- BindingErrorProcessor
- Parameters:
- ex- the- PropertyAccessExceptionto translate
- bindingResult- the errors object to add the error(s) to. You can add more than just one error or maybe even ignore it. The- BindingResultobject features convenience utils such as a- resolveMessageCodesmethod to resolve an error code.
- See Also:
 
- 
getArgumentsForBindErrorReturn FieldError arguments for a binding error on the given field. Invoked for each missing required field and each type mismatch.The default implementation returns a single argument indicating the field name (of type DefaultMessageSourceResolvable, with "objectName.field" and "field" as codes). - Parameters:
- objectName- the name of the target object
- field- the field that caused the binding error
- Returns:
- the Object array that represents the FieldError arguments
- See Also:
 
 
-