Hi! I’ve got a question on bean validation.
I’m using AbstractAutoGeneratedCrudFormFactory as a base class for my form builder. Registering custom validator for my whole bean works using the binder:
binder.withValidator(new FinishDateAfterStartDateValidator());
During form saving it triggers, not allowing to save the object, but the error message I’ve specified is not shown and I haven’t found a way to display it. Could you please point me where to look?
btw, error messages for specific fields are shown.