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:
- Open the
pom.xml
file—you can findpom.xml
under the root directory of the project itself. - 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. - A Select Dependency window will appear; enter Group Id as
org.hibernate
, enter Artifact Id ashibernate-validator
, enter Version as4.3.1.Final
, select Scope as compile, and click on the OK button and savepom.xml
. - 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.