Kiedy $unwind
reviews
pole, zwracana struktura json zapytania nie pasuje do Twojego Hotel
klasa już. Ponieważ $unwind
operacja sprawia, że reviews
obiekt podrzędny zamiast listy. Jeśli wypróbujesz zapytanie w robomongo lub innym narzędziu, zobaczysz, że zwracany obiekt jest taki
{
"_id" : ObjectId("59b519d72f9e340bcc830cb3"),
"id" : "59b23c39c70ff63135f76b14",
"name" : "Signature",
"reviews" : {
"id" : 1,
"userName" : "Salman",
"rating" : 8,
"approved" : true
}
}
Powinieneś więc użyć innej klasy zamiast Hotel
jak UnwindedHotel
public class UnwindedHotel {
private String name;
private int pricePerNight;
private Address address;
private Review reviews;
}
UnwindOperation unwindOperation = Aggregation.unwind("reviews");
Aggregation aggregation = Aggregation.newAggregation(unwindOperation);
AggregationResults<UnwindedHotel> results=mongoOperations.aggregate(aggregation,"hotel", UnwindedHotel.class);