Disabling validation in struts2 and using my own custom validation

I am developing a web project in struts2 and I want the validation to be done in my own custom validation by disabling struts2 validation because if one field is sent back it will validate all fields, but I only want to validate at submission time.

0


source to share


1 answer


I don't fully understand the idea, but there is a thing called @SkipValidation

that you can annotate methods with.



+1


source







All Articles