2016-12-15 55 views
0

我蒙戈聚集查询是这样的:如何在Spring中编写这种mongo聚合匹配条件?

db.events.aggregate({ 
    "$match" : { $or : [ 
      {"event_state" : "live"}, 
      { 
       $and: [ 
        {"event_state" : "scheduled"}, 
        {"schedule.start_time" : { "$gt" : ISODate("2016-12-15T14:06:00.000Z")}} 
        ] 
      } 
      ] 
     } }, 
     { "$sort" : { "schedule.start_time" : 1}} , 
     { "$project" : { 
      "registered_users_count" : { "$size" : [ "$registered_users"]} , 
      "event_image" : 1 , "celebrity" : 1 , "name" : 1 , "category" : 1 , 
      "schedule" : 1 , "online_moderator" : 1 , "offline_moderator" : 1 , 
      "region" : 1 , "status" : 1 , "event_state" : 1 , "recorder_id" : 1 , 
      "webcast_url" : 1 , "replay_url" : 1 
     }}) 

我试过类似下面

变体1:

matchCondition = Aggregation.match(Criteria.where("event_state") 
        .is("scheduled").and("schedule.end_time").gt(d) 
        .orOperator(Criteria.where("event_state").is("live"))); 

变2:

matchCondition = Aggregation.match(Criteria 
        .where("event_state") 
        .is("live") 
        .orOperator(
          Criteria.where("event_state").is("scheduled") 
            .and("schedule.end_time").gt(d))); 

排序和投影条件

sortCondition = Aggregation.sort(Sort.Direction.ASC, 
        "schedule.start_time"); 

AggregationOperation projectValues = Aggregation.project() 
       .and("registered_users").size().as("registered_users_count") 
       .and("event_image").as("event_image").and("celebrity") 
       .as("celebrity").and("name").as("name").and("category") 
       .as("category").and("schedule").as("schedule") 
       .and("online_moderator").as("online_moderator") 
       .and("offline_moderator").as("offline_moderator").and("region") 
       .as("region").and("status").as("status").and("event_state") 
       .as("event_state").and("recorder_id").as("recorder_id") 
       .and("webcast_url").as("webcast_url").and("replay_url") 
       .as("replay_url"); 

Aggregation aggrigation = Aggregation.newAggregation(matchCondition, 
       sortCondition, projectValues); 

变体1和变体2都没有产生所需的条件。那么如何实现这一目标呢?

+0

试试这个。 OrOperator必须先来。 Aggregation.match(Criteria.orOperator(Criteria.where(“event_state”)) .is(“scheduled”)and(“schedule.start_time”)。gt(d),Criteria.where(“event_state”)。is (“live”))) – Lipu

+0

“Criteria.orOperator”不像上面提到的那样工作。因为在标准之后你可以写出“哪里”或“班级”。事件,如果我试图写相同。它向我显示了以下内容:“不能对类型Criteria的非静态方法orOperator(Criteria ...)进行静态引用”。 – Kiran

+0

对不起。使用'new'operator.Aggregation.match(new Criteria()。orOperator(criteria1,criteria2)) – Lipu

回答

1

形成spring-data-mongo API documentation Criteria.OrOperators以多个Criteria作为参数来形成一个或类似的操作。 因此,解决方案如下:

Aggregation.match(new Criteria().orOperator(Criteria.where("event_‌​state") .is("scheduled").and("schedule.start_time").gt(d), Criteria.where("event_state").is("live")))