Możesz spróbować czegoś takiego.
import static com.mongodb.client.model.Projections.excludeId;
FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(excludeId());
Wyklucz inne pola
import static com.mongodb.client.model.Projections.fields;
FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(
fields(exclude("fieldname", "fieldvalue")));
Pełna lista rzutów.
http://api.mongodb.com/ java/3.0/?com/mongodb/client/model/Projekcje.html http://mongodb.github.io/mongo-java- sterownik/3.0/konstruktory/projekcje/