I am using struts 2.2.3 in web application. I want to use struts2 annotations based validations for the form data submitted from UI. The scenario is: User fills all the form fields and click on submit button. I have created a Person class for storing registration form data and RegistrationAction which triggers the logic for registration. RegistrationAction holds reference to person object with respected getters/setters. Please suggest how to validate individual fields of Person class after form submission, using struts 2 annotations.
Thanks.