Spring Data (Part 5): Paging and Sorting

Spring Data (Part 5): Paging and Sorting
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,...

Spring Data Series Part4:@Query Annotation

Spring Data Series Part4:@Query Annotation
@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...