top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to validate form data in Spring Web MVC Framework?

+1 vote
309 views
How to validate form data in Spring Web MVC Framework?
posted Sep 4, 2017 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Spring supports JSR-303 annotation based validations as well as provide Validator interface that we can implement to create our own custom validator. For using JSR-303 based validation, we need to annotate bean variables with the required validations.

For custom validator implementation, we need to configure it in the controller class.

answer Sep 5, 2017 by Ayush Srivastav
...