Package | Description |
---|---|
org.springframework.data.repository |
Central interfaces for repository abstraction.
|
org.springframework.data.repository.history |
API for repositories using historiography.
|
org.springframework.data.repository.reactive |
Support for reactive repositories.
|
Modifier and Type | Interface and Description |
---|---|
interface |
CrudRepository<T,ID>
Interface for generic CRUD operations on a repository for a specific type.
|
interface |
PagingAndSortingRepository<T,ID>
Extension of
CrudRepository to provide additional methods to retrieve entities using the pagination and
sorting abstraction. |
Modifier and Type | Interface and Description |
---|---|
interface |
RevisionRepository<T,ID,N extends Number & Comparable<N>>
A repository which can access entities held in a variety of
Revisions . |
Modifier and Type | Interface and Description |
---|---|
interface |
ReactiveCrudRepository<T,ID>
Interface for generic CRUD operations on a repository for a specific type.
|
interface |
ReactiveSortingRepository<T,ID>
Extension of
ReactiveCrudRepository to provide additional methods to retrieve entities using the sorting
abstraction. |
interface |
RxJava2CrudRepository<T,ID>
Deprecated.
since 2.6, use
RxJava 3 instead. To be removed with Spring Data 3.0. |
interface |
RxJava2SortingRepository<T,ID>
Deprecated.
since 2.6, use
RxJava 3 instead. To be removed with Spring Data 3.0. |
interface |
RxJava3CrudRepository<T,ID>
Interface for generic CRUD operations on a repository for a specific type.
|
interface |
RxJava3SortingRepository<T,ID>
Extension of
RxJava3CrudRepository to provide additional methods to retrieve entities using the sorting
abstraction. |
Copyright © 2011–2022 Pivotal Software, Inc.. All rights reserved.