Form server side validations

How to do Form server side validations after submitting like spring mvc form validations.

Hi,
Have a look on org.flowable.cmmn.test.validate.CaseWithFormTest in flowable source.

Regards
Martin

Hi Martin,

For each form (usertask reference form) i want to write different validations. how to implement server side validation class for each form while form complete/submit action.

Ex: Usertask1 associated form is LoanRequestForm having 3 fields. How to write server side validation class for this form ? likewise i have 3 forms UpdateLoanRequestForm and CreateCreditRequestForm .Can you pls tel me how to write server side validation class for each form.

Store form validation specification in the form model. After that, your server side validator has to parse spec and validate payload from the frontend.
Regards
Martin