आप कुछ इस तरह की कोशिश कर सकते हैं।
import static com.mongodb.client.model.Projections.excludeId;
FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(excludeId());
अन्य फ़ील्ड बहिष्कृत करें
import static com.mongodb.client.model.Projections.fields;
FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(
fields(exclude("fieldname", "fieldvalue")));
अनुमानों की पूरी सूची के लिए।
http://api.mongodb.com/ java/3.0/?com/mongodb/client/model/Projections.html http://mongodb.github.io/mongo-java- ड्राइवर/3.0/बिल्डर्स/प्रोजेक्शन/