Skip to content

Commit 5315848

Browse files
JoshuaChenmp911de
authored andcommitted
Support custom countSpec in SimpleJpaRepository.findAll(…).
Closes #3727
1 parent 96968e9 commit 5315848

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/JpaSpecificationExecutor.java

+16
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
* @author Christoph Strobl
3939
* @author Diego Krupitza
4040
* @author Mark Paluch
41+
* @author Joshua Chen
4142
*/
4243
public interface JpaSpecificationExecutor<T> {
4344

@@ -71,6 +72,21 @@ public interface JpaSpecificationExecutor<T> {
7172
*/
7273
Page<T> findAll(@Nullable Specification<T> spec, Pageable pageable);
7374

75+
/**
76+
* Returns a {@link Page} of entities matching the given {@link Specification}.
77+
* <p>
78+
* Supports counting the total number of entities matching the {@link Specification}.
79+
* <p>
80+
*
81+
* @param spec can be {@literal null}, if no {@link Specification} is given all entities matching {@code <T>} will be
82+
* selected.
83+
* @param countSpec can be {@literal null},if no {@link Specification} is given all entities matching {@code <T>} will
84+
* be counted.
85+
* @param pageable must not be {@literal null}.
86+
* @return never {@literal null}.
87+
*/
88+
Page<T> findAll(@Nullable Specification<T> spec, @Nullable Specification<T> countSpec, Pageable pageable);
89+
7490
/**
7591
* Returns all entities matching the given {@link Specification} and {@link Sort}.
7692
* <p>

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/SimpleJpaRepository.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@
100100
* @author Ernst-Jan van der Laan
101101
* @author Diego Krupitza
102102
* @author Seol-JY
103+
* @author Joshua Chen
103104
*/
104105
@Repository
105106
@Transactional(readOnly = true)
@@ -456,10 +457,15 @@ public List<T> findAll(Specification<T> spec) {
456457

457458
@Override
458459
public Page<T> findAll(@Nullable Specification<T> spec, Pageable pageable) {
460+
return findAll(spec, spec, pageable);
461+
}
462+
463+
@Override
464+
public Page<T> findAll(@Nullable Specification<T> spec, @Nullable Specification<T> countSpec, Pageable pageable) {
459465

460466
TypedQuery<T> query = getQuery(spec, pageable);
461467
return pageable.isUnpaged() ? new PageImpl<>(query.getResultList())
462-
: readPage(query, getDomainClass(), pageable, spec);
468+
: readPage(query, getDomainClass(), pageable, countSpec);
463469
}
464470

465471
@Override

0 commit comments

Comments
 (0)