In this video, we will learn how to validate Spring boot REST API requests using Hibernate validator.
In Java, the Java Bean Validation framework has become the de-facto standard for handling validations in Java projects.
JSR 380 is a specification of the Java API for bean validation and this ensures that the properties of a bean meet specific criteria, using annotations such as @NotNull, @Min, and @Max.
Source code available at github.com/sawankarn/spring-boot-rest-api-validati…
コメント