Riley Lark
Riley Lark

Reputation: 20890

Where can I find an implementation of javax.validation.*?

I've just included a new library in my project and it's dependent on some classes in javax.validation - which I can't find an implementation of. Is there a free implementation available that can be licensed for commercial, closed-source use?

Upvotes: 6

Views: 13237

Answers (1)

limc
limc

Reputation: 40176

Take a look at Hibernate Validator 4, it's an implementation of JSR 303 and uses javax.validation too.

Some examples:-

Upvotes: 8

Related Questions