Issue: SPR-17042
This commit is contained in:
Stephane Nicoll 2018-07-15 16:17:01 +02:00
parent f6fdffd663
commit 333ec7400e
1 changed files with 1 additions and 1 deletions

View File

@ -1554,7 +1554,7 @@ Each Bean Validation constraint consists of two parts. First, a `@Constraint` an
that declares the constraint and its configurable properties. Second, an implementation
of the `javax.validation.ConstraintValidator` interface that implements the constraint's
behavior. To associate a declaration with an implementation, each `@Constraint` annotation
references a corresponding ValidationConstraint implementation class. At runtime, a
references a corresponding `ConstraintValidator` implementation class. At runtime, a
`ConstraintValidatorFactory` instantiates the referenced implementation when the
constraint annotation is encountered in your domain model.