Uses of Interface
org.springframework.validation.BindingResult
Packages that use BindingResult Package Description org.springframework.messaging.handler.annotation.support Support classes for working with annotated message-handling methods.org.springframework.validation Provides data binding and validation functionality, for usage in business and/or UI layers.org.springframework.validation.beanvalidation Support classes for integrating a JSR-303 Bean Validation provider (such as Hibernate Validator) into a Spring ApplicationContext and in particular with Spring's data binding and validation APIs.org.springframework.web.bind Provides web-specific data binding functionality.org.springframework.web.bind.support Support classes for web data binding.Uses of BindingResult in org.springframework.messaging.handler.annotation.support
Methods in org.springframework.messaging.handler.annotation.support that return BindingResult Modifier and Type Method Description BindingResultMethodArgumentNotValidException. getBindingResult()Return the BindingResult if the failure is validation-related, ornullif none.Constructors in org.springframework.messaging.handler.annotation.support with parameters of type BindingResult Constructor Description MethodArgumentNotValidException(Message<?> message, MethodParameter parameter, BindingResult bindingResult)Create a new instance with the invalidMethodParameterand aBindingResult.Uses of BindingResult in org.springframework.validation
Classes in org.springframework.validation that implement BindingResult Modifier and Type Class Description classAbstractBindingResultAbstract implementation of theBindingResultinterface and its super-interfaceErrors.classAbstractPropertyBindingResultAbstract base class forBindingResultimplementations that work with Spring'sPropertyAccessormechanism.classBeanPropertyBindingResultDefault implementation of theErrorsandBindingResultinterfaces, for the registration and evaluation of binding errors on JavaBean objects.classBindExceptionThrown when binding errors are considered fatal.classDirectFieldBindingResultSpecial implementation of the Errors and BindingResult interfaces, supporting registration and evaluation of binding errors on value objects.classMapBindingResultMap-based implementation of the BindingResult interface, supporting registration and evaluation of binding errors on Map attributes.Methods in org.springframework.validation that return BindingResult Modifier and Type Method Description BindingResultBindException. getBindingResult()Return the BindingResult that this BindException wraps.static BindingResultBindingResultUtils. getBindingResult(Map<?,?> model, String name)Find the BindingResult for the given name in the given model.BindingResultDataBinder. getBindingResult()Return the BindingResult instance created by this DataBinder.static BindingResultBindingResultUtils. getRequiredBindingResult(Map<?,?> model, String name)Find a required BindingResult for the given name in the given model.Methods in org.springframework.validation with parameters of type BindingResult Modifier and Type Method Description voidBindingErrorProcessor. processMissingFieldError(String missingField, BindingResult bindingResult)Apply the missing field error to the given BindException.voidDefaultBindingErrorProcessor. processMissingFieldError(String missingField, BindingResult bindingResult)voidBindingErrorProcessor. processPropertyAccessException(PropertyAccessException ex, BindingResult bindingResult)Translate the givenPropertyAccessExceptionto an appropriate error registered on the givenErrorsinstance.voidDefaultBindingErrorProcessor. processPropertyAccessException(PropertyAccessException ex, BindingResult bindingResult)Constructors in org.springframework.validation with parameters of type BindingResult Constructor Description BindException(BindingResult bindingResult)Create a new BindException instance for a BindingResult.Uses of BindingResult in org.springframework.validation.beanvalidation
Methods in org.springframework.validation.beanvalidation with parameters of type BindingResult Modifier and Type Method Description protected ObjectSpringValidatorAdapter. getRejectedValue(String field, ConstraintViolation<Object> violation, BindingResult bindingResult)Extract the rejected value behind the given constraint violation, for exposure through the Spring errors representation.Uses of BindingResult in org.springframework.web.bind
Methods in org.springframework.web.bind that return BindingResult Modifier and Type Method Description BindingResultMethodArgumentNotValidException. getBindingResult()Return the results of the failed validation.Constructors in org.springframework.web.bind with parameters of type BindingResult Constructor Description MethodArgumentNotValidException(MethodParameter parameter, BindingResult bindingResult)Constructor forMethodArgumentNotValidException.Uses of BindingResult in org.springframework.web.bind.support
Classes in org.springframework.web.bind.support that implement BindingResult Modifier and Type Class Description classWebExchangeBindExceptionA specialization ofServerWebInputExceptionthrown when after data binding and validation failure.Methods in org.springframework.web.bind.support that return BindingResult Modifier and Type Method Description BindingResultWebExchangeBindException. getBindingResult()Return the BindingResult that this BindException wraps.Constructors in org.springframework.web.bind.support with parameters of type BindingResult Constructor Description WebExchangeBindException(MethodParameter parameter, BindingResult bindingResult)