Ik zou willen voorstellen om een POJO-klasse te maken om de resultaten van die zoekopdracht op te slaan:
package com.mypackage;
public class CustomerAmountResult{
private String surname;
private BigDecimal amountSum;
public CustomerAmountResult(String surname, BigDecimal amountSum){
this.surname = surname;
this.amountSum = amountSum;
}
// getters / setters
}
Wijzig vervolgens uw zoekopdracht in het volgende:
@Query("select NEW com.mypackage.CustomerAmountResult(
o.customer.surname, sum(o.amount))
from Order as o
group by o.customer.surname")
List<CustomerAmountResult> findCustomersBySumOfAmount();
Hierdoor hoeft u de resultatenset niet handmatig te ontleden.