Hi,
I would like to know simply if it is possible to validate a complex bean with xdoclet and commons validator.
By complex bean, I mean a bean with a property of type List, containing a list of object that need to also be validated.
EX :
Code:class Wallet public List operations; public List getOperations; public void setOperations(List myOperations);ThanksCode:class Operation public Date date; public Integer amount; public Date getDate; public Integer getAmount; public void setDate(Date myDate); public void setAmount(Integer myAmount);
Olivier


Reply With Quote