Paging and Sorting
Overview
When we perform bulk operations, like finding all "Person"s from the database or finding everyone based on a country, often we do the paging so that we can present a small data chunk to the end user and, in the next request,...
Home » Posts filed under Spring data
Spring Data Series Part4:@Query Annotation
in
@Query,
java,
jpa,
query annotation,
spring,
spring boot,
Spring data,
spring daya jpa
- on October 07, 2016
- No comments
@Query Annotation
Overview
We know the fact that we can delegate Query creation to The Spring data. Spring Data is enough smart to derive query based on the method name. But sometimes delegation is not fulfilled our needs. The way Spring data creates...