This package adds
Hibernate Validator
validations to
Tapestry CRUD forms (BaseEditPage instances).
To use this package, just add Hibernate Validator annotations
to your entity classes and use the
HibernateValidatorMixin to your object edit page.
The following example comes from the
Ars Machina Example Project:
public class EditProject extends BaseEditPage<Project, Integer, Integer> {
@Mixin
@SuppressWarnings("unused")
private HibernateValidatorMixin hibernateValidatorMixin;
...
}