vote up 0 vote down star

Title says it all really.

I have a login form that has some validation on many pages in my website.

How best do I structure my controllers to avoid repeating the validation logic etc.

Bear in mind some of these pages have their own controller requirements e.g. reference data. So one exactly identical controller cannot be used.

The requirements specify that any validation errors appear on the page where the user entered the error.

Thanks in advance!

flag

67% accept rate
Does this login form submit to the same URL on every page? And is it a separate URL from where the main forms submit to? – matt b Sep 28 at 20:44

1 Answer

vote up 0 vote down

You can have a custom validator using spring validator interface. You can then reuse the same validator in multiple places using the pushNestedPath and popNestedPath.

REF#
Validator REF

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.