Interface EntityGraphPagingAndSortingRepository<T,ID>
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<T,,ID> EntityGraphCrudRepository<T,,ID> EntityGraphRepository<T,,ID> org.springframework.data.repository.PagingAndSortingRepository<T,,ID> org.springframework.data.repository.Repository<T,ID>
- All Known Subinterfaces:
EntityGraphJpaRepository<T,ID>
- All Known Implementing Classes:
EntityGraphQuerydslRepository,EntityGraphSimpleJpaRepository
@NoRepositoryBean
public interface EntityGraphPagingAndSortingRepository<T,ID>
extends org.springframework.data.repository.PagingAndSortingRepository<T,ID>, EntityGraphCrudRepository<T,ID>
Created on 18/03/17.
- Author:
- Reda.Housni-Alaoui
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.data.domain.Page<T>findAll(org.springframework.data.domain.Pageable pageable, EntityGraph entityGraph) findAll(org.springframework.data.domain.Sort sort, EntityGraph entityGraph) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAllMethods inherited from interface com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphCrudRepository
findAll, findAllById, findByIdMethods inherited from interface com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphRepository
defaultEntityGraphMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll, findAll
-
Method Details
-
findAll
org.springframework.data.domain.Page<T> findAll(org.springframework.data.domain.Pageable pageable, EntityGraph entityGraph) - See Also:
-
PagingAndSortingRepository.findAll(Pageable)
-
findAll
- See Also:
-
PagingAndSortingRepository.findAll(Sort)
-