Anche se questo è un vecchio thread, ma spero che chiunque abbia trovato questo thread ora possa tranquillamente eseguire l'aggregazione multifase/pipeline (non sono sicuro di come si chiami) in MongoRepository. Poiché sto anche lottando per cercare indizi ed esempi di aggregazione nel repository mongo senza modello mongo .
Ma ora sono in grado di eseguire la pipeline di aggregazione come indicato nel documento di primavera qui
La mia aggregazione si presenta così in mongoshell:
db.getCollection('SalesPo').aggregate([
{$project: {
month: {$month: '$poDate'},
year: {$year: '$poDate'},
amount: 1,
poDate: 1
}},
{$match: {$and : [{year:2020} , {month:7}]
}}
,
{$group: {
'_id': {
month: {$month: '$poDate'},
year: {$year: '$poDate'}
},
totalPrice: {$sum: {$toDecimal:'$amount'}},
}
},
{$project: {
_id: 0,
totalPrice: {$toString: '$totalPrice'}
}}
])
Mentre lo trasformo in @Aggregation, l'annotazione in MongoRepository diventa così di seguito (sto rimuovendo l'apostrofi e sostituisco anche con i parametri del metodo):
@Repository
public interface SalesPoRepository extends MongoRepository<SalesPo, String> {
@Aggregation(pipeline = {"{$project: {\n" +
" month: {$month: $poDate},\n" +
" year: {$year: $poDate},\n" +
" amount: 1,\n" +
" poDate: 1\n" +
" }}"
,"{$match: {$and : [{year:?0} , {month:?1}] \n" +
" }}"
,"{$group: { \n" +
" '_id': {\n" +
" month: {$month: $poDate},\n" +
" year: {$year: $poDate} \n" +
" },\n" +
" totalPrice: {$sum: {$toDecimal:$amount}},\n" +
" }\n" +
" }"
,"{$project: {\n" +
" _id: 0,\n" +
" totalPrice: {$toString: $totalPrice}\n" +
" }}"})
AggregationResults<SumPrice> sumPriceThisYearMonth(Integer year, Integer month);
Il mio documento si presenta così:
@Document(collection = "SalesPo")
@Data
public class SalesPo {
@Id
private String id;
@JsonSerialize(using = LocalDateSerializer.class)
private LocalDate poDate;
private BigDecimal amount;
}
E la classe SumPrice per tenere le proiezioni:
@Data
public class SumPrice {
private BigDecimal totalPrice;
}
Spero che questa risposta possa aiutare chiunque prova a fare aggregazione in mongorepository senza usare mongotemplate .