private Date lastUpdateAt; @PrePersist public void recordUpdateTime(){ lastUpdateAt = new Date(); }
能夠用來在使用jpa的時記錄一些業務無關的字段,好比最後更新時間等等。code