私はこのSQLの列の合計を計算
"SELECT SUM(amount) FROM fundraisingusers ";
のようなクエリを書いていますclasses.Now JavaのPOJOを使用していますsql.Iの金額の合計を計算しようとしています。しかし、それはできませんでしたとエラーが表示されますクラスcom.lh.alumni.dto.FundraisingUsersのSUM(量)のセッターを見つけてください。私のJava pojoクラスにSUMのgetterとsetterを追加するには?
は、ここで私はあなたがすべてのユーザーの量の合計を取得したい、何をやろうとしていることだと思い、私のPOJOクラス
public class FundraisingUsers implements Serializable{
private Integer fundraisinguserId;
private BigDecimal amount;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "fundraisinguserId")
public Integer getFundraisinguserId() {
return fundraisinguserId;
}
public void setFundraisinguserId(Integer fundraisinguserId) {
this.fundraisinguserId = fundraisinguserId;
}
@Column(name = "amount")
public BigDecimal getAmount() {
return amount;
}
public void setAmount(BigDecimal amount) {
this.amount = amount;
}
はあなたが私達にあなたのPOJOクラスを示すことができるのですか? –
そのクエリをどのように構築して実行しますか?ネイティブSQLのクエリとして、jsqlのクエリまたはあなたはいくつかの基準を歌うのですか? –
私はdaoとservice layers.from daoを持っています。私はクエリを実行しています –