繁体   English   中英

如何使用聚合类将现有的mongo数据库查询转换为Spring Boot

[英]How can i convert my existing mongo db query in to spring boot using aggregation class

我写了mongodb查询。 在使用聚合类在Spring Boot中进行转换时遇到了一些问题。所以,请帮助我,我希望它使用聚合类在Spring Boot中进行转换。

db.api_audit.aggregate([{

  $match: {
      merchant_id: '015994832961',
      request_time: {$gte: ISODate("2017-05-11T00:00:00.0Z"), 
          $lt: ISODate("2017-05-12T00:00:00.0Z")}}},
{  
   $group: 
    {
        _id: {
        SERVICE_NAME: "$service_name",

        STATUS: "$status"
    },
    count: {
        "$sum": 1
    }
}
}, {


 $group: {
    _id: "$_id.SERVICE_NAME",

    STATUSCOUNT: {
        $push: {
            Service_name: "$_id.STATUS",
            count: "$count"
        }
    }
}
 },
 { $sort : { "STATUSCOUNT.count" : -1} }
  ])

下面是数据库查询响应

{
"_id" : "sendOTP",
"STATUSCOUNT" : [ 
    {
        "status" : "SUCCESS",
        "count" : 2.0
    }
]
}

提前致谢。

首先,创建所有必需的操作,然后将它们添加到聚合管道。 然后,将其提供给自动装配的mongotemplate。

像这样:

@Autowired
private final MongoTemplate mongoTemplate;

void aggregate()
{

    Criteria match = where("merchant_id").is("015994832961").andOperator(where("request_time").gte(Date.parse("2017-05-11T00:00:00.0Z")).lt(Date.parse("2017-05-11T00:00:00.0Z")));
    GroupOperation groupOperation1 = group(fields().and("SERVICE_NAME").and("STATUS")).count().as("count");
    GroupOperation groupOperation2 = ...//(not sure how push works here, but it should not be hard to figure out)
    SortOperation sortOperation = sort(DESC, "STATUSCOUNT.count");

    Aggregation aggegation = Aggregation.newAggregation(match, groupOperation1, groupOperation2, sortOperation);

    List<Result> results = mongoTemplate.aggegate(aggregation, ObjectOfCollectionToRunOn.class, Result.class).getMappedResults();
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM