Anda perlu menggunakan $elemMatch(projection) . Sesuatu seperti di bawah ini akan berfungsi.
import static com.mongodb.client.model.Projections.elemMatch;
Bson filters = and(eq("userId", userId));
Bson projections = fields(elemMatch(ARRAY_FIELD_NAME, eq("id", id)), excludeId());