我正在使用以下网站项目:Java,MongoDB和Freemarker模板(FTL)
数据被发送到Map中的FTL页面。
现在我想知道是否可以将Mongo查询的结果直接转换为Map,然后将其发送到FTL模板。
例如: 我想查询集合中的所有成员,并将其放在Map中以在FTL模板中使用。
public Map<String, Object> getAllMembers() {
DBCollection collection =database.getCollection("members");
BasicDBObject query = new BasicDBObject();
DBCursor cur = collection.find(query);
DBObject one = cur.next();
HashMap<String,Object> result = one;
return result;
}
或者这是不可能的,我需要循环结果将每个值放入Map?像这样:
public Map<String, Object> getAllMembers(f){
DBCollection collection = database.getCollection("members");
DBCursor cursor = collection.find();
Map<String,Object> itemMap = new HashMap<String, Object>();
DBObject one;
while(cursor.hasNext()) {
one = cursor.next();
itemMap.put((String)one.get("id"),one.get("name"));
}
return itemMap;
}
感谢您提供任何帮助和建议!
答案 0 :(得分:0)
也许这就是你需要的:
public Map<String, Object> fetch(DB db, String collName, String key, String value){
Map<String,Object> result = new HashMap<String, Object>();
DBCollection coll = db.getCollection(collName);
BasicDBObject query = new BasicDBObject();
query.put(key, value);
DBCursor cur = coll.find(query);
while(cur.hasNext()) {
result.putAll(cur.next().toMap());
}
return result;
}