Reputation: 92367
Is there a recommendable validation framework that can be used with pure Java code (no annotations)? It should be applicable to domain objects.
Upvotes: 0
Views: 717
Reputation: 298818
Oval has a very good reputation.
And to quote from their site:
Constraints can be declared with annotations (
@NotNull
,@MaxLength
), POJOs or XML.
Upvotes: 1