Interface EntityGraphJpaSpecificationExecutor<T>
- All Superinterfaces:
org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>
- All Known Implementing Classes:
EntityGraphQuerydslRepository,EntityGraphSimpleJpaRepository
@NoRepositoryBean
public interface EntityGraphJpaSpecificationExecutor<T>
extends org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>
Created on 23/11/16.
- Author:
- Reda.Housni-Alaoui
-
Method Summary
Modifier and TypeMethodDescriptionfindAll(org.springframework.data.jpa.domain.Specification<T> spec, EntityGraph entityGraph) org.springframework.data.domain.Page<T>findAll(org.springframework.data.jpa.domain.Specification<T> spec, org.springframework.data.domain.Pageable pageable, EntityGraph entityGraph) findAll(org.springframework.data.jpa.domain.Specification<T> spec, org.springframework.data.domain.Sort sort, EntityGraph entityGraph) findOne(org.springframework.data.jpa.domain.Specification<T> spec, EntityGraph entityGraph) Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, exists, findAll, findAll, findAll, findOne
-
Method Details
-
findOne
Optional<T> findOne(org.springframework.data.jpa.domain.Specification<T> spec, EntityGraph entityGraph) - See Also:
-
JpaSpecificationExecutor.findOne(Specification)
-
findAll
- See Also:
-
JpaSpecificationExecutor.findAll(Specification)
-
findAll
org.springframework.data.domain.Page<T> findAll(org.springframework.data.jpa.domain.Specification<T> spec, org.springframework.data.domain.Pageable pageable, EntityGraph entityGraph) - See Also:
-
JpaSpecificationExecutor.findAll(Specification, Pageable)
-
findAll
List<T> findAll(org.springframework.data.jpa.domain.Specification<T> spec, org.springframework.data.domain.Sort sort, EntityGraph entityGraph) - See Also:
-
JpaSpecificationExecutor.findAll(Specification, Sort)
-