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

Wie unterdrücke ich eine Spalte in Mongodb mit Java-Treibern?

Sie können so etwas versuchen.

import static com.mongodb.client.model.Projections.excludeId;

FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(excludeId());

Andere Felder ausschließen

import static com.mongodb.client.model.Projections.fields;

FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(
fields(exclude("fieldname", "fieldvalue")));

Für eine vollständige Liste der Projektionen.

http://api.mongodb.com/ java/3.0/?com/mongodb/client/model/Projections.html http://mongodb.github.io/mongo-java- driver/3.0/builders/projections/