@NonNullApi @NonNullFields
See: Description
| Class | Description | 
|---|---|
| BeanValidationPostProcessor | Simple  BeanPostProcessorthat checks JSR-303 constraint annotations
 in Spring-managed beans, throwing an initialization exception in case of
 constraint violations right before calling the bean's init method (if any). | 
| CustomValidatorBean | Configurable bean class that exposes a specific JSR-303 Validator
 through its original interface as well as through the Spring
  Validatorinterface. | 
| LocaleContextMessageInterpolator | Delegates to a target  MessageInterpolatorimplementation but enforces Spring's
 managed Locale. | 
| LocalValidatorFactoryBean | This is the central class for  javax.validation(JSR-303) setup in a Spring
 application context: It bootstraps ajavax.validation.ValidationFactoryand
 exposes it through the SpringValidatorinterface
 as well as through the JSR-303Validatorinterface and theValidatorFactoryinterface itself. | 
| MessageSourceResourceBundleLocator | Implementation of Hibernate Validator 4.3/5.x's  ResourceBundleLocatorinterface,
 exposing a SpringMessageSourceas localizedMessageSourceResourceBundle. | 
| MethodValidationInterceptor | An AOP Alliance  MethodInterceptorimplementation that delegates to a
 JSR-303 provider for performing method-level validation on annotated methods. | 
| MethodValidationPostProcessor | A convenient  BeanPostProcessorimplementation that delegates to a
 JSR-303 provider for performing method-level validation on annotated methods. | 
| OptionalValidatorFactoryBean | LocalValidatorFactoryBeansubclass that simply turnsValidatorcalls into no-ops
 in case of no Bean Validation provider being available. | 
| SpringConstraintValidatorFactory | JSR-303  ConstraintValidatorFactoryimplementation that delegates to a
 Spring BeanFactory for creating autowiredConstraintValidatorinstances. | 
| SpringValidatorAdapter | Adapter that takes a JSR-303  javax.validator.Validatorand
 exposes it as a SpringValidatorwhile also exposing the original JSR-303 Validator interface itself. | 
The central class is LocalValidatorFactoryBean
 which defines a shared ValidatorFactory/Validator setup for availability
 to other Spring components.