プロジェクトステージとグループステージの両方で、idフィールドが正しくマッピングされていません。
_idである必要があります IDではありません。また、電子メールの種類を文字列に変更します。私のために働く。
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);