Page 1 of 0 containing UNKNOWN instances
来源:6-1 买家订单-dao(上)
城南晨
2020-06-03
@Test
public void findByBuyerOpenid() throws Exception{
PageRequest pageRequest = new PageRequest(0,3);
Page result = respository.findByBuyerOpenid(OPENID,pageRequest);
Assert.assertEquals(1,result.getTotalElements());
}
在进行此段代码单元测试时:
result对象里返回的是 Page 1 of 0 containing UNKNOWN instances
写回答
1回答
-
廖师兄
2020-06-05
你用的是新版本SpringBoot吧?新版PageRequest用法不一样了
012020-06-05
相似问题