user378902
user378902

Reputation:

spring data jpa not working and class not found error

I have configured spring data jpa with my spring app

I am using Spring 3.2 and spring data jpa 1.1.0

Xml configuration

Repo class

public class TestRepo extends JpaRepository <Test, Long>{}

Error subclass PagingAndSortingRepository needed by JpaRepository cannot be found

I dont see any such class in the spring data jpa jar. Am I missing any jar?

Upvotes: 2

Views: 1526

Answers (1)

zdesam
zdesam

Reputation: 2986

Have you included the spring-data-commons library

Upvotes: 2

Related Questions