Spring数据MongoDB无法在组聚合中映射_id

问题描述 投票:2回答:1

我正在使用Spring Data MongoDB生成聚合查询。有一次我这样做:

// 5. Rejoin the array with group.
group("email", "name", "surname", "birthday", "creationTime", "updateTime", "technology")
  .push(SCORES_FIELD).as(SCORES_FIELD));

生成的步骤(在日志中)是这样的:

"$group" : { 
    "_id" : { 
        "email" : "$_id",
        "name" : "$name" ,
        "surname" : "$surname" , 
        "birthday" : "$birthday" , 
        "creationTime" : "$creationTime" , 
        "updateTime" : "$updateTime" , 
        "technology" : "$technology"
    } ,
    "scores" : { "$push" : "$scores"}
}

这是非常好的,我已经在Mongo shell上测试了它,并准确地回馈了我想要的东西。

问题是,当我对Spring Data执行相同操作时,电子邮件字段(Mongo中的_id字段)将映射为null。我的映射可能有些不对劲但我无法弄清楚究竟是什么。这是模型:

@Document(collection = "user")
public class User implements UserDetails {

    private static final long serialVersionUID = 1L;
    private String name;
    private String surname;
    private LocalDate birthday;

    @Id
    @Field("_id")
    private String email;
    private Collection<? extends GrantedAuthority> authorities;
    private String password;
    private Set<Score> scores;
    private LocalDateTime creationTime;
    private LocalDateTime updateTime;
    private String technology;

    // Getters and setters, hashmap, equals and toString

}

我已经完成了其他查询,一切都很完美。我只有这个问题,这是我做的唯一聚合。

java mongodb spring-data spring-data-mongodb
1个回答
2
投票

推广我的评论回答。

_id无法映射到电子邮件,因为组阶段在_id文档中返回多个键。 previousOperation()只是一种方便的方法,可以从之前的组操作中返回_id。您可以尝试更改为group("email").first("name").as("name")....,看看它是否有帮助。

我希望spring能够从模型中读取Field注释,并将_id字段映射回电子邮件。

© www.soinside.com 2019 - 2024. All rights reserved.