Spring-data-mongodb中的Criteria运算符中的Datediff无法正常工作

时间:2015-11-05 04:16:52

标签: spring mongodb spring-data-mongodb

我可以在spring-data-mongodb的Criteria运算符中将两个日期之间的差异大于0吗?我写了下面的查询:

  Criteria c= Criteria.where("myDate").gte(startDate).
               andOperator(Criteria.where("myDate").lte(endDate).andOperator(Criteria.where("studentId").is(studentId).andOperator(Criteria.where("currDate - myDate").gt(0))));

此查询无效。 如果可能,请帮助我使用spring-data-mongodb进行此查询。

修改 mongodb管道查询如下:

 { "aggregate" : "__collection__" , "pipeline" : [ { "$match" : { "myDate" : { "$gte" : { "$date" : "2000-01-01T07:57:33.231Z"}} , "$and" : [ { "myDate" : { "$lte" : { "$date" : "2015-11-05T07:57:33.231Z"}} , "$and" : [ { "studentId" : "100" , "$and" : [ { "currDate - myDate" : { "$gt" : 0}}]}]}]}} , { "$project" : { "status" : 1}} , { "$group" : { "_id" : { "status" : "$status"} , "activeCount" : { "$sum" : 1}}}]}

此致

克里斯

1 个答案:

答案 0 :(得分:0)

要使其正常工作,您基本上希望将当前聚合管道转换为:

var pipeline = [ 
    { 
        "$project" : { 
            "status" : 1,
            "studentId" : 1,
            "myDate" : 1,
            "dateDifference": { "$subtract": [ new Date(), "$myDate" ] }
        }
    },
    { 
        "$match" : { 
            "studentId": "100" ,
            "myDate": { 
                "$gte": ISODate("2000-01-01T07:57:33.231Z"),
                "$lte": ISODate("2015-11-05T07:57:33.231Z")
            },
            "dateDifference": { "$gt" : 0 }         
        }
    },   
    { 
        "$group": { 
            "_id": "$status",           
            "activeCount": { "$sum" : 1 }
        }
    }
];

db.collection.aggregate(pipeline);

Spring Data MongoDB等价物如下:

Criteria dateCriteria = new Criteria().andOperator(Criteria.where("myDate").gte(startDate).lte(endDate),
                                                   Criteria.where("dateDifference").gt(0));
Aggregation agg = Aggregation.newAggregation(       
    project("id", "status", "studentId", "myDate") 
        .andExpression("currDate - myDate").as("dateDifference"),
        //.and(currDate).minus("myDate").as("dateDifference"), <-- or use expressions
    match(Criteria.where("studentId").is("100").andOperator(dateCriteria)),
    group("status"), 
        .count().as("activeCount")
);