gpt4 book ai didi

java - 将结果集转换为 MongoDB 中用户定义的数据结构

转载 作者:行者123 更新时间:2023-11-30 04:38:50 25 4
gpt4 key购买 nike

MongoDB 数据库以自己的数据结构返回数据。例如,在下面的示例中,数据在cursor中返回。我的问题是“如何将此数据结构转换为用户定义的数据结构(例如,Java List、结构)?”

BasicDBObject query = new BasicDBObject();

query.put("i", 71);

cursor = coll.find(query);

try {
while(cursor.hasNext()) {
System.out.println(cursor.next());
}
} finally {
cursor.close();
}

最佳答案

Morphia 是为 mongodb 进行对象映射的库:http://code.google.com/p/morphia/

关于java - 将结果集转换为 MongoDB 中用户定义的数据结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12785904/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com