Bạn đang ánh xạ trường id không chính xác trong cả giai đoạn dự án và giai đoạn nhóm.
Nó phải là _id không phải id. Đồng thời thay đổi loại email thành Chuỗi. Làm việc cho tôi.
GroupOperation groupOp = Aggregation
.group("firstName", "lastName", "email", "status", "_id")
.addToSet("department").as("department").addToSet("address").as("address");
ProjectionOperation projectStage = Aggregation.project("firstName", "lastName", "email", "status", "department", "address", "_id");
...
AggregationResults<EmployeeOutFacet> EmployeeOutList = mongoTemplate.aggregate(aggregation, mongoTemplate.getCollectionName(Employee.class), EmployeeOutFacet.class);