Time for action – adding bean validation support

In this section, you will learn how to validate a form submission in a Spring MVC application. In our project, we have the add products form already. Add some validation to this form by performing the following steps:

  1. Open the pom.xml file—you can find pom.xml under the root directory of the project itself.
  2. You will see some tabs at the bottom of the pom.xml file. Select the Dependencies tab and click on the Add button in the Dependencies section.
  3. A Select Dependency window will appear; enter Group Id as org.hibernate, enter Artifact Id as hibernate-validator, enter Version as 4.3.1.Final, select Scope as compile, and click on the OK button and save pom.xml.
  4. Open the Product domain class and add the ...

Get Spring MVC Beginner’s Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.