Generic JavaBeans Validation: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 17: Line 17:
}
}
</syntaxhighlight>
</syntaxhighlight>
=Playground Example=
{{External|[https://github.com/ovidiuf/playground/tree/master/spring/generic-validation GitHub Generic JavaBeans Validation Example]}}


=Approach=
=Approach=
Line 29: Line 25:


==Validate and Handle Constraint Violations==
==Validate and Handle Constraint Violations==
=Playground Example=
{{External|[https://github.com/ovidiuf/playground/tree/master/spring/generic-validation GitHub Generic JavaBeans Validation Example]}}

Revision as of 01:42, 16 October 2018

External

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, including Hibernate Validator, which will be used as validation provider, and get our runtime running. However, there is nothing Spring-specific that would prevent the same example working in a generic Java environment with JSR-303 support.

dependencies {
    implementation('org.springframework.boot:spring-boot-starter-validation')
}

Approach

Declare Validation Rules

Instantiate a Validator

Validate and Handle Constraint Violations

Playground Example

GitHub Generic JavaBeans Validation Example