deamon
deamon

Reputation: 92367

Pure Java validation framework

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

Answers (1)

Sean Patrick Floyd
Sean Patrick Floyd

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

Related Questions