使用 Morphia 更新 Mongo 中嵌入的地图条目
我们有一个集合,它将 Map 存储为嵌入
集合。我们需要更新地图各个条目中的字段。
有什么办法可以做到这一点吗?
@Embedded
private Map<String, MyClass> map = new HashMap<String, MyClass>();
我们想要更新 map
中与给定键匹配的字段。我们在 Daos
中使用 Morphia
。
We have a collection which stores a Map as an embedded
collection. We need to update fields within individual entries of the Map.
Is there any way to do that?
@Embedded
private Map<String, MyClass> map = new HashMap<String, MyClass>();
we want to update fields inside the map
which match a given key. We are using Morphia
in our Daos
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 Morphia 中创建更新来执行此操作。您必须使用点符号来指定包括映射键的路径。
You can create an update in Morphia to do this. You will have to use dot-notation to specify the path including the map key.
我遇到了同样的问题。您可以在此处找到示例:http://code.google.com/p/morphia /wiki/Updating 在字幕设置/取消设置下。该示例使用列表,但这同样适用于地图。
I came across the same issue. You'll find an example here: http://code.google.com/p/morphia/wiki/Updating under subtitle set/unset. The example uses a List but the same applies for Maps.