Uses of Interface
org.springframework.validation.Errors
Packages that use Errors Package Description 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.org.springframework.web.reactive.result.view Support for result handling through view resolution.org.springframework.web.servlet.support Support classes for Spring's web MVC framework.org.springframework.web.servlet.tags This package contains Spring's JSP standard tag library for JSP 2.0+.Uses of Errors in org.springframework.validation
Subinterfaces of Errors in org.springframework.validation Modifier and Type Interface Description interfaceBindingResultGeneral interface that represents binding results.Classes in org.springframework.validation that implement Errors Modifier and Type Class Description classAbstractBindingResultAbstract implementation of theBindingResultinterface and its super-interfaceErrors.classAbstractErrorsAbstract implementation of theErrorsinterface.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 with parameters of type Errors Modifier and Type Method Description voidAbstractBindingResult. addAllErrors(Errors errors)voidBindException. addAllErrors(Errors errors)voidErrors. addAllErrors(Errors errors)Add all errors from the givenErrorsinstance to thisErrorsinstance.static voidValidationUtils. invokeValidator(Validator validator, Object target, Errors errors)static voidValidationUtils. invokeValidator(Validator validator, Object target, Errors errors, Object... validationHints)static voidValidationUtils. rejectIfEmpty(Errors errors, String field, String errorCode)Reject the given field with the given error code if the value is empty.static voidValidationUtils. rejectIfEmpty(Errors errors, String field, String errorCode, Object[] errorArgs)Reject the given field with the given error code and error arguments if the value is empty.static voidValidationUtils. rejectIfEmpty(Errors errors, String field, String errorCode, Object[] errorArgs, String defaultMessage)Reject the given field with the given error code, error arguments and default message if the value is empty.static voidValidationUtils. rejectIfEmpty(Errors errors, String field, String errorCode, String defaultMessage)Reject the given field with the given error code and default message if the value is empty.static voidValidationUtils. rejectIfEmptyOrWhitespace(Errors errors, String field, String errorCode)Reject the given field with the given error code if the value is empty or just contains whitespace.static voidValidationUtils. rejectIfEmptyOrWhitespace(Errors errors, String field, String errorCode, Object[] errorArgs)Reject the given field with the given error code and error arguments if the value is empty or just contains whitespace.static voidValidationUtils. rejectIfEmptyOrWhitespace(Errors errors, String field, String errorCode, Object[] errorArgs, String defaultMessage)Reject the given field with the given error code, error arguments and default message if the value is empty or just contains whitespace.static voidValidationUtils. rejectIfEmptyOrWhitespace(Errors errors, String field, String errorCode, String defaultMessage)Reject the given field with the given error code and default message if the value is empty or just contains whitespace.voidSmartValidator. validate(Object target, Errors errors, Object... validationHints)Validate the suppliedtargetobject, which must be of a type ofClassfor which theValidator.supports(Class)method typically returnstrue.voidValidator. validate(Object target, Errors errors)Validate the suppliedtargetobject, which must be of aClassfor which theValidator.supports(Class)method typically has (or would) returntrue.default voidSmartValidator. validateValue(Class<?> targetType, String fieldName, Object value, Errors errors, Object... validationHints)Validate the supplied value for the specified field on the target type, reporting the same validation errors as if the value would be bound to the field on an instance of the target class.Uses of Errors in org.springframework.validation.beanvalidation
Methods in org.springframework.validation.beanvalidation with parameters of type Errors Modifier and Type Method Description protected voidSpringValidatorAdapter. processConstraintViolations(Set<ConstraintViolation<Object>> violations, Errors errors)Process the given JSR-303 ConstraintViolations, adding corresponding errors to the provided SpringErrorsobject.voidSpringValidatorAdapter. validate(Object target, Errors errors)voidSpringValidatorAdapter. validate(Object target, Errors errors, Object... validationHints)voidSpringValidatorAdapter. validateValue(Class<?> targetType, String fieldName, Object value, Errors errors, Object... validationHints)Uses of Errors in org.springframework.web.bind
Classes in org.springframework.web.bind that implement Errors Modifier and Type Class Description classEscapedErrorsErrors wrapper that adds automatic HTML escaping to the wrapped instance, for convenient usage in HTML views.Methods in org.springframework.web.bind that return Errors Modifier and Type Method Description ErrorsEscapedErrors. getSource()Methods in org.springframework.web.bind with parameters of type Errors Modifier and Type Method Description voidEscapedErrors. addAllErrors(Errors errors)Constructors in org.springframework.web.bind with parameters of type Errors Constructor Description EscapedErrors(Errors source)Create a new EscapedErrors instance for the given source instance.Uses of Errors in org.springframework.web.bind.support
Classes in org.springframework.web.bind.support that implement Errors Modifier and Type Class Description classWebExchangeBindExceptionA specialization ofServerWebInputExceptionthrown when after data binding and validation failure.Methods in org.springframework.web.bind.support with parameters of type Errors Modifier and Type Method Description voidWebExchangeBindException. addAllErrors(Errors errors)Uses of Errors in org.springframework.web.reactive.result.view
Methods in org.springframework.web.reactive.result.view that return Errors Modifier and Type Method Description ErrorsBindStatus. getErrors()Return the Errors instance (typically a BindingResult) that this bind status is currently associated with.ErrorsRequestContext. getErrors(String name)Retrieve the Errors instance for the given bind object, using the "defaultHtmlEscape" setting.ErrorsRequestContext. getErrors(String name, boolean htmlEscape)Retrieve the Errors instance for the given bind object.Uses of Errors in org.springframework.web.servlet.support
Methods in org.springframework.web.servlet.support that return Errors Modifier and Type Method Description ErrorsBindStatus. getErrors()Return the Errors instance (typically a BindingResult) that this bind status is currently associated with.ErrorsRequestContext. getErrors(String name)Retrieve the Errors instance for the given bind object, using the "defaultHtmlEscape" setting.ErrorsRequestContext. getErrors(String name, boolean htmlEscape)Retrieve the Errors instance for the given bind object.Uses of Errors in org.springframework.web.servlet.tags