Mapping calculated properties with JPA

后端 未结 3 613
生来不讨喜
生来不讨喜 2021-01-04 11:35

Is there a way to map a calculated property using JPA?

Assuming I have an Invoice object with one or more InvoiceLineItems within it, I wan

3条回答
  •  萌比男神i
    2021-01-04 12:24

    I know that I am necro-ing this thread, but maybe it might help somebody out.

    If you want to calculate the value on read, the @PostLoad annotation might be what you want:

    @Transient
    private BigDecimal totalAmount;
    
    @PostLoad
    public void onPostLoad() {
        BigDecimal amount = BigDecimal.ZERO;
        for (InvoiceLineItem lineItem : lineItems) {
            amount = amount.add(lineItem.getTotalAmount());
        }
        this.totalAmount = amount;
    }
    

提交回复
热议问题