Is it possible to validate a collection of objects in JSR 303 - Jave Bean Validation where the collection itself does not have any annotations but the elements contained wit
As of Bean Validator 2.0, both of these approaches work:
class MyDto { private List<@Valid MyBean> beans; }
and
class MyDto { @Valid private List beans; }