Jon Onstott
Jon Onstott

Reputation: 13727

JPA2 on Tomcat - possible?

I'd like to use JPA along with Bean Validation, so JPA 2.0 sounds like what I need. I'm running my web application on Tomcat 6. Is Tomcat able to use JPA2?

Upvotes: 0

Views: 1167

Answers (1)

Bozho
Bozho

Reputation: 597324

Yes. You just need to place a JPA implementation (Hibernate, EclipseLink, etc) in WEB-INF/lib

Upvotes: 4

Related Questions