我可以在带有@Query注释的Spring Data R2dbc存储库中使用Pageable属性吗?例如;
public interface PartyRepository extends ReactiveCrudRepository<Party,String> {
@Query("select * from party order by id")
Flux<Party> getParties(Pageable pageable);
}
它给出了“ org.springframework.data.repository.query.ParameterOutOfBoundsException:无效的参数索引!您似乎声明的查询方法参数太少了!”
在Spring Data R2dbc存储库中可以使用分页吗?
谢谢。