Quando você
$unwind
reviews
campo, a estrutura json de retorno da consulta não corresponde ao seu Hotel
aula mais. Porque $unwind
operação faz reviews
um subobjeto em vez de uma lista. Se você tentar sua consulta no robomongo ou em alguma outra ferramenta, poderá ver que seu objeto de retorno é assim {
"_id" : ObjectId("59b519d72f9e340bcc830cb3"),
"id" : "59b23c39c70ff63135f76b14",
"name" : "Signature",
"reviews" : {
"id" : 1,
"userName" : "Salman",
"rating" : 8,
"approved" : true
}
}
Portanto, você deve usar outra classe em vez de
Hotel
como 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);