饱满母鸡

文章
5
资源
0
加入时间
3年0月21天

MongoTemplate分页查询

SpringBoot + MongoDB环境下,使用MongoTemplate进行分页查询Query query = Query.query();// 设置起始页和每页查询条数Pageable pageable = PageRequest.of(pageIndex, pageSize);// 查询记录总数long totalCount = mongoTemplate.count(query,collectionName);//查询分页后的记录List<JSONObject&