public interface JpaEntityGraphSpecificationExecutor<T>
extends org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>
| Modifier and Type | Method and Description |
|---|---|
List<T> |
findAll(org.springframework.data.jpa.domain.Specification<T> spec,
EntityGraph entityGraph)
Returns all entities matching the given
Specification. |
org.springframework.data.domain.Page<T> |
findAll(org.springframework.data.jpa.domain.Specification<T> spec,
org.springframework.data.domain.Pageable pageable,
EntityGraph entityGraph)
Returns a
Page of entities matching the given Specification. |
List<T> |
findAll(org.springframework.data.jpa.domain.Specification<T> spec,
org.springframework.data.domain.Sort sort,
EntityGraph entityGraph)
Returns all entities matching the given
Specification and Sort. |
T |
findOne(org.springframework.data.jpa.domain.Specification<T> spec,
EntityGraph entityGraph)
Returns a single entity matching the given
Specification. |
T findOne(org.springframework.data.jpa.domain.Specification<T> spec, EntityGraph entityGraph)
Specification.spec - entityGraph - List<T> findAll(org.springframework.data.jpa.domain.Specification<T> spec, EntityGraph entityGraph)
Specification.spec - entityGraph - org.springframework.data.domain.Page<T> findAll(org.springframework.data.jpa.domain.Specification<T> spec, org.springframework.data.domain.Pageable pageable, EntityGraph entityGraph)
Page of entities matching the given Specification.spec - pageable - entityGraph - List<T> findAll(org.springframework.data.jpa.domain.Specification<T> spec, org.springframework.data.domain.Sort sort, EntityGraph entityGraph)
Specification and Sort.spec - sort - entityGraph - Copyright © 2017 Cosium. All rights reserved.