Google News
logo
JPA - Interview Questions
What is difference between CrudRepository and JpaRepository interfaces in Spring Data JPA?
CrudRepository provides CRUD functions. PagingAndSortingRepository provides methods to do pagination and sort records.

JpaRepository provides JPA related methods such as flushing the persistence context and delete records in a batch.
Advertisement