Hibernate Validator
Hibernate Validator allows to express and validate application constraints. The default metadata source are annotations, with the ability to override and extend through the use of XML.
Introduction to Hibernate Validator
- What is ORM?
- What is validation?
- Types of validations
- Client-side validation
- Server-side validation
- Importance of server side validation
- What is Hibernate Validator framework?
Hibernate Validator annotations support
- @NotNull
- @Size
- @Min
- @Max
- @Future
- @Past
- Regular expression
Custom Validation
- Why custom validations are required?
- How to create custom validations?
- How to use custom validations?