DATAJDBC-101 - Adds support for paging and sorting repositories.

Original pull request: #188.
This commit is contained in:
Milan Milanov
2020-02-02 12:31:56 +02:00
committed by Jens Schauder
parent f1d2d78dc8
commit 7f578ed2bb
23 changed files with 749 additions and 45 deletions

View File

@@ -585,6 +585,14 @@ Note that the type used for prefixing the statement name is the name of the aggr
`getDomainType`: The type of the entity to load.
| `findAllSorted` | Select all aggregate roots, sorted | `findAll(Sort)`.|
`getSort`: The sorting specification.
| `findAllPaged` | Select a page of aggregate roots, optionally sorted | `findAll(Page)`.|
`getPageable`: The paging specification.
| `count` | Count the number of aggregate root of the type used as prefix | `count` |
`getDomainType`: The type of aggregate roots to count.

View File

@@ -7,6 +7,7 @@ This section covers the significant changes for each version.
== What's New in Spring Data JDBC 2.0
* Optimistic Locking support.
* Support for `PagingAndSortingRepository`
[[new-features.1-1-0]]
== What's New in Spring Data JDBC 1.1