Features of Spring Data JPA



So far you saw that how Spring Data JPA is efficient compared to legacy ORM and JPA frameworks. Since it is on top of JPA it supports legacy framework features as well, additionally, it provides below features.

  • Provides support to create repositories using Spring and JPA.

  • Pagination and Sorting support

  • Query methods/finder method support

  • Query validation for custom queries annotated with @Query annotation.

Advertisements