本文介绍了Mongodb保存对象列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道如何保存字符串列表
I know how to save a list of String
现在,例如我创建了自己的动物类
Now, e.g. I create my own Animal class
但是当我尝试将列表保存在mongodb中时,它给出了
But when I try to save list in mongodb, it gives
我确实创建了一个新的mongo集合Animal,但是它仍然无法正常工作.
I do create a new mongo collection Animal, but it is still not working.
推荐答案
如果Animal类扩展 ReflectionDBObject ,则可以插入动物列表.
If Animal class extend ReflectionDBObject then you can insert list of Animals.
Animal extends ReflectionDBObject {
}
这篇关于Mongodb保存对象列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!