Generic JavaBeans Validation
Jump to navigation
Jump to search
Internal
Overview
This article documents an executable Java example that shows how to use JavaBeans Validation annotations to externalize validation logic to a JavaBeans validation provider.
This example depends on Spring Boot only because we use Spring Boot's machinery to pull starter dependencies, and get our runtime running:
dependencies {
implementation('org.springframework.boot:spring-boot-starter-validation')
}