Java Spring 数据 MongoDB

发布于 2025-01-16 08:59:24 字数 319 浏览 0 评论 0原文

我正在将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

因为看清所以看轻 2025-01-23 08:59:24

使用 @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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文