Java操作MongoDB采用的是MongoRepository
2 回答
红糖糍粑
TA贡献1815条经验 获得超6个赞
// 这个是我一个工程里的一段代码,`template`是`MongoTemplate`的实例
return template.find(Query.query(criteria)
.with(new Sort(Sort.Direction.DESC ,"createTime"))
.with(new PageRequest(page ,limit)) ,
PushMessage.class) ;
// 如果是`MongoRepository`,我看里面有一个方法
Page<T> findAll(Pageable pageable);
// 我没用过,题主自己研究一下吧。
添加回答
举报
0/150
提交
取消