Sice je to staré vlákno, ale doufám, že ten, kdo toto vlákno našel, může nyní bezpečně provádět vícestupňovou/potrubní agregaci (nejsem si zcela jistý, jak se to nazývá) v MongoRepository. Protože se také snažím hledat vodítko a příklad agregace v mongo úložišti bez šablony mongo .
Ale teď jsem schopen udělat agregační potrubí, jak řekl jarní dokument zde
Moje agregace vypadá v mongoshell takto:
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'}
}}
])
Zatímco to transformuji na anotaci @Aggregation v MongoRepository, stane se to takto (odstraňuji aposhreph a také ho nahrazuji parametry metody):
@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);
Můj dokument vypadá takto:
@Document(collection = "SalesPo")
@Data
public class SalesPo {
@Id
private String id;
@JsonSerialize(using = LocalDateSerializer.class)
private LocalDate poDate;
private BigDecimal amount;
}
A třída SumPrice pro držení projekcí:
@Data
public class SumPrice {
private BigDecimal totalPrice;
}
Doufám, že tato odpověď pomůže každému, kdo zkusí provést agregaci v mongorepository bez použití mongotemplate .