GroupByResults<LandPushTypeCount> groupByResult = landPushTypeCountDao.getMongoTemplate().group(criteria, "LandPushTypeCount", groupBy, LandPushTypeCount.class);
BasicDBList list = (BasicDBList) groupByResult.getRawResults().get("retval");
for (int i = 0; i < list.size(); i ++) {
LandPushTypeCount landPushTypeCountBean = new LandPushTypeCount();
BasicDBObject obj = (BasicDBObject)list.get(i);
System.out.println("片区:" + obj.get("areaId")
+ "总数量:" + obj.get("codeCount")
+ "新用户数量:" + obj.get("newCount")
+ "旧用户数量:" + obj.get("oldCount")
+ "异常数量:" + obj.get("errorCount")
);
landPushTypeCountBean.setCodeCount(((Double) obj.get("codeCount")).intValue());
landPushTypeCountBean.setNewCount(((Double) obj.get("newCount")).intValue());
landPushTypeCountBean.setOldCount(((Double) obj.get("oldCount")).intValue());
landPushTypeCountBean.setErrorCount(((Double) obj.get("errorCount")).intValue());
result.put((String) obj.get("areaId"), landPushTypeCountBean);
}
return result;
}
// 相当于mongo语句如下
db.runCommand(
{
"group":
{
"ns":"LandPushTypeCount",
"key":{"areaId":true},
"initial":{codeCount:0, newCount:0, oldCount:0, errorCount:0},
"$reduce":function(doc,prev)
{
prev.codeCount += doc.codeCount;
prev.newCount += doc.newCount;
prev.oldCount += doc.oldCount;
prev.errorCount += doc.errorCount;
},
"condition":{"todayDate":"2015-10-29", "areaId":{$in:["", "330100", "110000"]}}
}
}
);