저는 Slice를 Specification과 Pagable과 함께 사용하고 싶습니다. List이나 페이지가 아닙니다. 다음은 JpaRepository에서 작동합니다.
public interface PersonRepository extends JpaRepository<Person, UUID>,
JpaSpecificationExecutor<Person> {
Slice<Person> findAllBy(Pageable pageable);
}
그러나 사양을 추가하면 최소 1 개의 매개 변수가 제공되고 실패합니다.
Slice<Person> findAllBy(Specification<Person> specification, Pageable pageable);
java.lang.IllegalArgumentException: At least 1 parameter(s) provided but only 0 parameter(s) present in query.