Spring Data JPA中的分页问题

Spring Data JPA中的分页问题,第1张

Spring Data JPA中的分页问题

您正在读取错误消息错误:

Paging query needs to have a Pageable parameter!

您注释掉的方法是正确的,其余的方法都是错误的!如果

Page<PSubject>
要从查询方法返回,则此方法必须具有
Pageable
参数。这是可以理解的:如果您要查询特定的结果页面,则必须首先定义您感兴趣的页面。

Page<PSubject> findByType(String type, Pageable pageable);Page<PSubject> findByType(String type, Pageable pageable);Page<PSubject> findByMacaddress(String macaddress, Pageable pageable);Page<PSubject> findByMacaddress(String macaddress, Pageable pageable);Page<PSubject> findByUri(String uri, Pageable pageable);

或者,如果您对所有结果都感兴趣,请使用

List<PSubject>

Page<PSubject> findByType(String type, Pageable pageable);List<PSubject> findByType(String type);Page<PSubject> findByMacaddress(String macaddress, Pageable pageable);List<PSubject> findByMacaddress(String macaddress);List<PSubject> findByUri(String uri);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5662432.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存