我试图通过搜索“_id”键在MongoDB中查找文档。我的文档看起来像这样 -
{
"_id" : ObjectId("4f693d40e4b04cde19f17205"),
"hostname" : "hostnameGoesHere",
"OSType" : "OSTypeGoesHere"
}
我正在尝试将此文档搜索为 -
ObjectId id= new ObjectId("4f693d40e4b04cde19f17205");
BasicDBObject obj = new BasicDBObject();
obj.append("_id", id);
BasicDBObject query = new BasicDBObject();
query.putAll(query);
但我得到以下错误 -
error: reference to putAll is ambiguous, both method putAll(Map) in BasicBSONObject and method putAll(BSONObject) in BasicBSONObject match
query.putAll(query);
BasicDBObject的append方法支持(String Key,Value),如果我将“_id”作为String传递给此方法,则不匹配任何文档。
所以我的问题是如何通过“_id”?
答案 0 :(得分:56)
不确定其他人是否可能正在搜索关于此主题的答案,但这是基于“_id”搜索MongoDB记录的最简单方法。 MongoDB文档未更新,仍然将ObjectId显示为com.mongodb
包的一部分(它通常也没有提供有关ObjectId搜索的大量信息)。
import org.bson.types.ObjectId;
public DBObject findDocumentById(String id) {
BasicDBObject query = new BasicDBObject();
query.put("_id", new ObjectId(id));
DBObject dbObj = collection.findOne(query);
return dbObj;
}
答案 1 :(得分:16)
对于那些寻求更新方法的人,特别是3.4:
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoDatabase;
import org.bson.Document;
import org.bson.types.ObjectId;
import static com.mongodb.client.model.Filters.eq;
//......
MongoCollection<Document> myCollection = database.getCollection("myCollection");
Document document = myCollection.find(eq("_id", new ObjectId("4f693d40e4b04cde19f17205"))).first();
if (document == null) {
//Document does not exist
} else {
//We found the document
}
答案 2 :(得分:2)
使用查询as-
解决了这个问题query.putAll((BSONObject)query);
答案 3 :(得分:2)
你可以这样做
ObjectId id= new ObjectId("4f693d40e4b04cde19f17205");
BasicDBObject obj = new BasicDBObject();
obj.append("_id", id);
BasicDBObject query = new BasicDBObject();
query.putAll((BSONObject)query);
答案 4 :(得分:0)
您可以尝试以下代码段:
ObjectId id= new ObjectId("4f693d40e4b04cde19f17205");
BasicDBObject obj = new BasicDBObject();
obj.append("_id", id);
BasicDBObject query = new BasicDBObject();
query.putAll((BSONObject)obj);