Reputation:
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