spring data mongodb “id” field mapping

2019-08-10 11:57发布

I have a document with an array field with

"chapters": [
  { "id" : "14031871223912313", ...}
  ...
  ]

I would like to query return the id's with Spring Data's MongoTemplate using the following:

class Chapter {
 private String id;
 public String getId() {
        return id;
    } 
}

This way the id is not populated. I have tried using the different mapping options with @Field described here http://docs.spring.io/spring-data/mongodb/docs/current/reference/html/#mapping.conventions.id-field

What am I doing wrong? I know I can always to back to mongo java driver, but I thought this should work.

Thanks in advance for any help.

2条回答
虎瘦雄心在
2楼-- · 2019-08-10 12:01

Found a solution. It is populated via:

  @Field("id")
  private String chaperId
查看更多
smile是对你的礼貌
3楼-- · 2019-08-10 12:22

In MongoDB id's are _id, and every document in mongo has an _id. From the document you linked to, Spring will map @Field String id to mongo's _id field. You probably want to use a @Field('id') String id field mapping to indicate that the field you want is id not _id.

查看更多
登录 后发表回答