我正在从 Spring Boot 1 升级到 Spring Boot 2。我试图只挑选第一个结果。PageRequest pageRequest = PageRequest.of(0, batchSize, Sort.Direction.ASC, "id");在存储库上使用带注释的查询@Query("select c from Component")
List<Component> findReturnComponent(PageRequest pageRequest);我收到此错误消息but parameter 'Optional[pageRequest]' not found in annotated query 'select c from Component
1 回答
沧海一幻觉
TA贡献1824条经验 获得超5个赞
使用 Pageable 接口而不是 PageRequest
Pageable pageable = PageRequest.of(0, batchSize, Sort.Direction.ASC, "id");
和
@Query("select c from Component") List<Component> findReturnComponent(Pageable pageable);
添加回答
举报
0/150
提交
取消