diff --git a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/validation.adoc b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/validation.adoc index 4fecbc4a4e4..c3818e8ea70 100644 --- a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/validation.adoc +++ b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/validation.adoc @@ -1,7 +1,7 @@ [[io.validation]] = Validation -The method validation feature supported by Bean Validation 1.1 is automatically enabled as long as a JSR-303 implementation (such as Hibernate validator) is on the classpath. +The method validation feature supported by Bean Validation 1.1 is automatically enabled as long as a JSR-303 implementation (such as Hibernate Validator, typically provided by `spring-boot-starter-validation`) is on the classpath. This lets bean methods be annotated with `jakarta.validation` constraints on their parameters and/or on their return value. Target classes with such annotated methods need to be annotated with the javadoc:org.springframework.validation.annotation.Validated[format=annotation] annotation at the type level for their methods to be searched for inline constraint annotations.