Java Spring 数据 MongoDB
我正在将 Spring data mongo 与 azure cosmos 一起使用。我的结构如下所示。 我的集合中有一个 Id 字段未用 @Id 注释。我看到 _id 和 id 都在数据库中,但是当我检索 id 字段时,值在 _id 中。
@Document(collection = "mycollection")
class MyObject{
private String id;
...
}
public interface MyRepository extends MongoRepository<MyObject, Void> {
}
I am using Spring data mongo with azure cosmos. My structure looks like below.
I have an Id field in my collection that is not annotated with @Id. I see both _id and id are in the DB but When I retrieve id field comes with the value is in _id.
@Document(collection = "mycollection")
class MyObject{
private String id;
...
}
public interface MyRepository extends MongoRepository<MyObject, Void> {
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 @Field("id") 告诉 Spring Data 威胁该字段不是 mongo 的 _id/pk 字段
Used
@Field("id")
to tell spring data threat this field as is not as _id/pk field for mongo