如何从 FindIterable 检索 Mongo 查询字符串(mongo java 驱动程序)
How to retrieve Mongo query string from FindIterable (mongo java driver)
有没有办法简单地检索 MongoDB java 驱动程序执行的查询字符串?
例如:
filter = eq("field","value");
FindIterable<BasicDBObject> find = collection.find(filter).projection(fields(include("field"), excludeId()));
迭代时,这应该调用查询:
db.collection.find({"field":"value"},{"field":1, "_id":0})
这将分批拆分,第一个将包含 101 个元素,接下来的最大 16MB(但我并不真正关心这个。我只需要初始查询)。
有没有办法从 mongodb java 驱动程序的 FindIterable 或其他对象中检索此字符串?
我在其他地方读到有人建议通过日志记录来做到这一点。我在运行时需要查询字符串,因为我必须使用它。
您可以尝试使用 Java 驱动程序 v4.2 和 MongoDB v4.2.8。您可以从 Bson
中获取过滤器和投影作为 JSON 字符串值。
MongoCollection<Document> coll = client.getDatabase("test").getCollection("books");
Bson filter = eq("author", "Mark Twain");
String filterJson = filter.toBsonDocument(BsonDocument.class, Bson.DEFAULT_CODEC_REGISTRY).toJson();
System.out.println(filterJson); // {"author": "Mark Twain"}
Bson projectn = fields(include("title"), excludeId());
String projectJson = projectn.toBsonDocument(Document.class, Bson.DEFAULT_CODEC_REGISTRY).toJson();
System.out.println(projectJson); // {"title": 1, "_id": 0}
coll.find(filter).projection(projectn);
有没有办法简单地检索 MongoDB java 驱动程序执行的查询字符串? 例如:
filter = eq("field","value");
FindIterable<BasicDBObject> find = collection.find(filter).projection(fields(include("field"), excludeId()));
迭代时,这应该调用查询:
db.collection.find({"field":"value"},{"field":1, "_id":0})
这将分批拆分,第一个将包含 101 个元素,接下来的最大 16MB(但我并不真正关心这个。我只需要初始查询)。 有没有办法从 mongodb java 驱动程序的 FindIterable 或其他对象中检索此字符串?
我在其他地方读到有人建议通过日志记录来做到这一点。我在运行时需要查询字符串,因为我必须使用它。
您可以尝试使用 Java 驱动程序 v4.2 和 MongoDB v4.2.8。您可以从 Bson
中获取过滤器和投影作为 JSON 字符串值。
MongoCollection<Document> coll = client.getDatabase("test").getCollection("books");
Bson filter = eq("author", "Mark Twain");
String filterJson = filter.toBsonDocument(BsonDocument.class, Bson.DEFAULT_CODEC_REGISTRY).toJson();
System.out.println(filterJson); // {"author": "Mark Twain"}
Bson projectn = fields(include("title"), excludeId());
String projectJson = projectn.toBsonDocument(Document.class, Bson.DEFAULT_CODEC_REGISTRY).toJson();
System.out.println(projectJson); // {"title": 1, "_id": 0}
coll.find(filter).projection(projectn);