Filter Repository
Interface for filter repositories that extend JpaRepository. This interface provides a method for filtering entities. Use this interface as a base interface for your repositories that need to filter entities.
Add a Spring configuration class that enables JPA repositories and sets the repositoryBaseClass to DefaultFilterRepository.
Example:
Parameters
Ethe entity type
IDthe ID type of the entity
Inheritors
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun getEntities(pagination: Pagination, filter: Filter?, sorting: Sorting?, fieldTransformer: TransformFunction<String, String> = createCaseFormatTransformFunction(
CaseFormat.LOWER_UNDERSCORE,
CaseFormat.LOWER_CAMEL
)): Page<E>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard