Bạn có thể thử một cái gì đó như thế này.
import static com.mongodb.client.model.Projections.excludeId;
FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(excludeId());
Loại trừ các trường khác
import static com.mongodb.client.model.Projections.fields;
FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(
fields(exclude("fieldname", "fieldvalue")));
Để có danh sách đầy đủ các phép chiếu.
http://api.mongodb.com/ java / 3.0 /? com / mongodb / client / model / Projairs.html http://mongodb.github.io/mongo-java- trình điều khiển / 3.0 / nhà xây dựng / dự báo /