MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Verwendung von QueryBuilder und BasicDBObjectBuilder in MongoDB 3.3.0 oben

Das zweite Argument der Find-Methode ist der Ergebnistyp. Versuchen Sie es wie unten.

FindIterable<TDocType> tDocTypeList = dbCollection.find(filter, TDocType.class);

Update für Projektion

FindIterable<TDocType> tDocTypeList = dbCollection.find(filter, TDocType.class).projection(outputQuery);

Update zum Anhängen von Filtern

List<Bson> filters = new ArrayList<>();
for (Map.Entry<String, Object> entry : query.getParams().entrySet()) {
        // this is where its building the query
   if (some condition){
       filters.add(Filters.eq(entry.getKey(), entry.getValue()));
   }
   if (some other condition){
       filters.add(Filters.in(entry.getKey(), query.getValues()));
   }
}
FindIterable<TDocType> docType = dbCollection.find(Filters.and(filters));