通过Id查询Morphia
我正在使用 Morphia(MongoDB 的 Pojo 映射器),我发现一项在我看来应该非常简单的任务很困难:通过 id 获取对象。我能够找到集合中的所有对象,但无法弄清楚使用从列表中获得的 id 进行查询的简单任务。我实际上是在谈论 ObjectId。如果我尝试以 JSON 格式呈现它,我会看到
I am using Morphia, the Pojo mapper for MongoDB, and I find difficult a task that in my view should be very simple: getting an object by id. I am able to find all the objects in a collection but I cannot figure out the simple task of querying using an id I got from the list. I am actually talking about the ObjectId. If I try to render it in JSON I see
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
前面的解释使用了已弃用的方法:
datastore().find(Model.class).field("_id").equal(oid).get();
我在 Morphia 2.2 上的变体。 10:The previous explanation used the deprecated methods:
datastore().find(Model.class).field("_id").equal(oid).get();
My variant of it on Morphia 2.2.10:这个问题似乎不完整。
您的问题的答案似乎也位于 Morphia 快速入门页面上。看起来很简单,如下所示。
所以你肯定需要更多细节。
This question seems incomplete.
It also seems like the answer to you question is on the Morphia QuickStart page. Seems to be as simple as follows.
So you'll definitely need more details.
如果您通过 id 查找,并且 id 是由用户提供的(意味着它可以是任何类型的数据),则不应使用上面给出的解决方案。
如文档,一个 ObjectId 由 12 个字节组成,因此如果您将其他内容传递给
new ObjectId(myValue)
,您的代码将抛出IllegalArgumentException
。这是我实现按 id 查找的方法的方法:
If you're finding by id and the id is provided by the user (means that it could be whatever type of data), you shouldn't use the solutions given above.
As explained in the documentation, an ObjectId consists of 12 bytes, so if you pass something else to
new ObjectId(myValue)
, your code will throw anIllegalArgumentException
.Here is how I implemented the method to find by id :