用MongoTemplate转换mongo请求(spring)

时间:2016-06-08 13:39:41

标签: spring mongodb mongotemplate

我想转换此mongodb请求的一部分:

{
        "$group": {
                "_id": {
                        "instrument_name": "$instrument_name",
                        "interval":{  
                             "$minute":{  
                                    $add:[new Date("1970-01-01"), "$date"]
                             }
                        }
                }
        }
}

使用MongoTemplate的聚合方法(使用spring)。

我的问题是间隔属性。我希望以一分钟的时间间隔返回一份工具清单。

我尝试了很多解决方案,但我无法解决这个问题:

                            "interval":{  
                             "$minute":{  
                                    $add:[new Date("1970-01-01"), "$date"]
                             }
                        }



Aggregation aggregation = Aggregation.newAggregation(
        Aggregation.match(Criteria.where("instrument_name").in(instruments)),
        Aggregation.group("instrumentName", ???)),
        Aggregation.project().andExpression("instrumentName").as("instrument_name")
    );

你能帮助我吗?

由于

2 个答案:

答案 0 :(得分:0)

您可以尝试首先使用投影操作中的 SpEL andExpression 投影区间字段,然后按组操作中的新字段进行分组:

// define epochDate here e.g DateTime epochDate = ...
Aggregation agg = newAggregation(
    match(Criteria.where("instrument_name").in(instruments)),
    project("instrument_name").and("date").plus(epochDate).as("interval"), 
    group(fields().and("instrument_name").and("interval")).count().as("count")
);

答案 1 :(得分:0)

我不知道我们是否可以优化它:

TypedAggregation<InstrumentModel> aggregation = Aggregation.newAggregation(InstrumentModel.class,
        Aggregation.match(Criteria.where("instrument_name").in(instruments)),
        Aggregation.project().and("instrumentName").as("instrument_name").and("time").plus(epoch).extractMinute().as("interval"),
        Aggregation.group(Fields.fields().and("instrument_name").and("interval")).count().as("ticks")
    );

但它有效