Unindo duas coleções com Spring Data MongoDB
Classe de funcionário
class Employee {
private String _id;
private String name;
private String dept_id;
}
Classe do Departamento
class Department {
private String _id;
private String dept_name;
}
Classe de resultado do funcionário
public class EmpDeptResult {
private String _id;
private String name;
private List<Object> departments;
}
Classe de serviço de funcionário
public class EmployeeService {
@Autowired
private MongoTemplate mongoTemplate;
private Logger LOGGER = LoggerFactory.getLogger(EmployeeService.class);
public void lookupOperation(){
LookupOperation lookupOperation = LookupOperation.newLookup()
.from("Department")
.localField("dept_id")
.foreignField("_id")
.as("departments");
Aggregation aggregation = Aggregation.newAggregation(Aggregation.match(Criteria.where("_id").is("1")) , lookupOperation);
List<EmpDeptResult> results = mongoTemplate.aggregate(aggregation, "Employee", EmpDeptResult.class).getMappedResults();
LOGGER.info("Obj Size " +results.size());
}
}