MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wie führt man eine Mongo-Aggregationsabfrage in Spring Data durch?

Dies ist zwar ein alter Thread, aber ich hoffe, wer diesen Thread gefunden hat, kann jetzt sicher eine mehrstufige / Pipeline-Aggregation (nicht ganz sicher, wie es heißt) in MongoRepository durchführen. Da ich auch Schwierigkeiten habe, nach Hinweisen und Beispielen für die Aggregation im Mongo-Repository zu suchen ohne Mongo-Vorlage .

Aber jetzt bin ich in der Lage, die Aggregationspipeline wie im Frühjahrsdokument hier zu erstellen

Meine Aggregation sieht in Mongoshell so aus:

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'}
     }}
 ])

Während ich es in eine @Aggregation-Anmerkung in MongoRepository umwandle, wird es unten so (ich entferne das Aposthrephe und ersetze es auch durch Methodenparameter):

@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);

Mein Dokument sieht folgendermaßen aus:

@Document(collection = "SalesPo")
@Data
public class SalesPo {
  @Id
  private String id;
  @JsonSerialize(using = LocalDateSerializer.class)
  private LocalDate poDate;
  private BigDecimal amount;
}

Und die SumPrice-Klasse zum Halten der Projektionen:

@Data
public class SumPrice {
  private BigDecimal totalPrice;
}

Ich hoffe, diese Antwort kann jedem helfen, der versucht, eine Aggregation in Mongorepository durchzuführen, ohne Mongotemplate zu verwenden .