Support custom countSpec in SimpleJpaRepository.findAll(…).

Closes #3727
This commit is contained in:
Joshua Chen
2024-12-28 15:02:46 +08:00
committed by Mark Paluch
parent f670b10a0b
commit e5df40b0e2
2 changed files with 1 additions and 1 deletions

View File

@@ -37,6 +37,7 @@ import org.springframework.data.jpa.domain.PredicateSpecification;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.data.jpa.domain.UpdateSpecification;
import org.springframework.data.repository.query.FluentQuery;
import org.springframework.lang.Nullable;
/**
* Interface to allow execution of {@link Specification}s based on the JPA criteria API.

View File

@@ -47,7 +47,6 @@ import java.util.stream.Stream;
import org.assertj.core.api.SoftAssertions;
import org.hibernate.LazyInitializationException;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;