Sie machen jetzt das Äquivalent von:
db.col.find({$in:[{Id:id1}, {Id:id2}, ..., {Id:idN}]})
Dies ist keine gültige Abfrage, da Sie nicht angeben, in welches Feld $in eingefügt werden soll. Ich nehme an, Sie wollen:
db.col.find({Id:{$in:[id1, id2, ..., idN]}})
Ändern Sie Ihren Abfragekonstruktionscode entsprechend und Sie sollten in Ordnung sein.
BEARBEITEN:Korrekten Code hinzufügen:
public static void getDocuments(List<Integer> documentIds) {
BasicDBList docIds = new BasicDBList();
docIds.addAll(documentIds)
DBObject inClause = new BasicDBObject("$in", docIds);
DBObject query = new BasicDBObject("Id", inClause);
DBCursor dbCursor = mongoRule.getDatabase().getCollection("mycollection").find(query);
System.out.println(dbCursor == null);
if (dbCursor != null) {
while (dbCursor.hasNext()) {
System.out.println("object - " + dbCursor.next());
}
}
}
Bitte beachten Sie, dass davon ausgegangen wird, dass „Id“ etwas anderes als „_id“ ist