Generic JavaBeans Validation: Difference between revisions
No edit summary |
|||
(34 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=External= | |||
* https://www.baeldung.com/javax-validation | |||
=Internal= | =Internal= | ||
* [[Spring_Validation_Concepts#Generic_JavaBeans_Validation|Spring Validation Concepts]] | * [[Spring_Validation_Concepts#Generic_JavaBeans_Validation|Spring Validation Concepts]] | ||
* [[ | * [[JavaBeans_Validation#Generic_JavaBeans_Validation_Example|JavaBeans Validation]] | ||
=Overview= | =Overview= | ||
This example depends on Spring Boot only because we use Spring Boot's machinery to pull starter dependencies, and get our runtime running. | This article documents a runnable Java example uses JavaBeans Validation annotations to externalize validation logic to a JavaBeans [[JavaBeans_Validation#Validation_Provider|validation provider]]. The example depends on [[Spring Boot]], but this is only because we use Spring Boot's machinery to pull starter dependencies, including Hibernate Validator, and get our runtime running. There is nothing Spring-specific that would prevent the same example working in a generic Java environment with JSR-303 support. JavaBeans Validation can be also used directly in Spring MVC controllers, with the [[@Valid|@Valid]] annotation. This is an example how to do it: "[[Spring_Validation_Concepts#Bean_Validation_in_Spring_MVC|Bean Validation in Spring MVC]]". | ||
=Approach= | |||
==Spring Boot Starter Dependencies== | |||
The simplest way to get the project started is to use [[Spring Initializr]] and select "Validation". The Gradle configuration will get the following dependency: | |||
<syntaxhighlight lang='groovy'> | |||
dependencies { | |||
... | |||
implementation('org.springframework.boot:spring-boot-starter-validation') | |||
... | |||
} | |||
</syntaxhighlight> | |||
==Declare Validation Rules== | |||
Use JavaBean Validation annotation to declare validation logic. Example: | |||
<syntaxhighlight lang='java'> | |||
public class CreditCard { | |||
... | |||
@NotNull(message = "The first name cannot be null") | |||
private String firstName; | |||
... | |||
} | |||
</syntaxhighlight> | |||
A certain number of standard validation annotations are available: | |||
{{Internal|JavaBeans_Validation#Annotations|JavaBeans Validation Annotations}} | |||
Because we are using Hibernate Validator, Hibernate-specific validation annotations are also available: | |||
{{Internal|JavaBeans_Validation#Hibernate_Validation_Annotations|Hibernate Validation Annotations}} | |||
==Instantiate a Validator== | |||
<syntaxhighlight lang='java'> | |||
import javax.validation.Validation; | |||
import javax.validation.Validator; | |||
import javax.validation.ValidatorFactory; | |||
... | |||
ValidatorFactory factory = Validation.buildDefaultValidatorFactory(); | |||
Validator validator = factory.getValidator(); | |||
... | |||
</syntaxhighlight> | |||
==Validate and Handle Constraint Violations== | |||
<syntaxhighlight lang='java'> | |||
import javax.validation.ConstraintViolation; | |||
... | |||
CreditCard cc = new CreditCard(); | |||
Set<ConstraintViolation<CreditCard>> violations = validator.validate(cc); | |||
for(ConstraintViolation<CreditCard> v: violations) { | |||
System.out.println(v.getMessage()); | |||
} | |||
... | |||
</syntaxhighlight> | |||
The result of validating a CardAccount with a null first name is: | |||
<syntaxhighlight lang='java'> | |||
The first name cannot be null | |||
</syntaxhighlight> | |||
at stdout. | |||
=Playground Example= | |||
{{External|[https://github.com/ovidiuf/playground/tree/master/spring/generic-validation GitHub Generic JavaBeans Validation Example]}} |
Latest revision as of 17:36, 16 October 2018
External
Internal
Overview
This article documents a runnable Java example uses JavaBeans Validation annotations to externalize validation logic to a JavaBeans validation provider. The example depends on Spring Boot, but this is only because we use Spring Boot's machinery to pull starter dependencies, including Hibernate Validator, and get our runtime running. There is nothing Spring-specific that would prevent the same example working in a generic Java environment with JSR-303 support. JavaBeans Validation can be also used directly in Spring MVC controllers, with the @Valid annotation. This is an example how to do it: "Bean Validation in Spring MVC".
Approach
Spring Boot Starter Dependencies
The simplest way to get the project started is to use Spring Initializr and select "Validation". The Gradle configuration will get the following dependency:
dependencies {
...
implementation('org.springframework.boot:spring-boot-starter-validation')
...
}
Declare Validation Rules
Use JavaBean Validation annotation to declare validation logic. Example:
public class CreditCard {
...
@NotNull(message = "The first name cannot be null")
private String firstName;
...
}
A certain number of standard validation annotations are available:
Because we are using Hibernate Validator, Hibernate-specific validation annotations are also available:
Instantiate a Validator
import javax.validation.Validation;
import javax.validation.Validator;
import javax.validation.ValidatorFactory;
...
ValidatorFactory factory = Validation.buildDefaultValidatorFactory();
Validator validator = factory.getValidator();
...
Validate and Handle Constraint Violations
import javax.validation.ConstraintViolation;
...
CreditCard cc = new CreditCard();
Set<ConstraintViolation<CreditCard>> violations = validator.validate(cc);
for(ConstraintViolation<CreditCard> v: violations) {
System.out.println(v.getMessage());
}
...
The result of validating a CardAccount with a null first name is:
The first name cannot be null
at stdout.