I am wondering if I can use Spring Data JPA in the following environment:
JBoss SOA 5.0.2 (Java EE 5, JPA 1.0, Hibernate 3.3.2)
Thankfully, due to the JBoss Snowdrop project I have gotten Spring 3.0.6 to work in this environment...but in looking through the Maven dependencies it would appear to me that I may need a container with JPA 2.0 support in order to use Spring Data JPA. What is the truth?


Reply With Quote
You don't need a container but to ship a JPA 2.0 capable persistence provider along with your application. All the recent ones (Hibernate, EclipseLink, OpenJPA) implement the 2.0 version.

