您正在读取错误消息错误:
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);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)