1.

What is Hibernate Validator Framework?

Answer»
  • Data VALIDATION is a crucial part of any APPLICATION. We can find data validation in:
    • UI layer before sending objects to the server
    • At the server-side before processing it
    • Before persisting data into the database
  • Validation is a cross-cutting concern/task, so as good PRACTICE, we should try to keep it apart from our business logic. JSR303 and JSR349 PROVIDE specifications for bean validation by using annotations.
  • This framework provides the reference IMPLEMENTATION for JSR303 and JSR349 specifications.


Discussion

No Comment Found