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