Cross field validation with Hibernate Validator (3.1.0.GA)
Posted
by Joshua
on Stack Overflow
See other posts from Stack Overflow
or by Joshua
Published on 2010-01-15T17:14:01Z
Indexed on
2010/04/20
15:33 UTC
Read the original article
Hit count: 449
How do we enforce cross field validation with hibernate validator 3.1.0.GA
create table user (id, start_date, end_date, ...) e.g. college graduation finishing date for a student should be greater than the graduation start date
How do we enforce this, so that the validation messages can be shown in the UI on save / update operations. The UI is built using JSF, Richfaces
© Stack Overflow or respective owner