onSave()(用于使用HibernateSpring数据存储库保存的任何实体)

onSave()(用于使用HibernateSpring数据存储库保存的任何实体),第1张

onSave()(用于使用Hibernate / Spring数据存储库保存的任何实体

我认为最好的选择是

EntityListener
使用
@PrePersist
@PreUpdate
注释,为实体侦听器创建配置,然后您将可以访问要保存的每个实例,每次尝试使用以下方法持久化或更新内容时都会调用此方法hibernate或spring数据存储库

public class EntityToPersistListener{   @PrePersist   @PreUpdate   public void methodExecuteBeforeSave(final EntityToPersist reference) {      //Make any change to the entity such as calculation before the save process      reference.setAmount(xxxx)    }}

您只需要在实体bean上方添加注释

@Entity@Table(name = "", schema = "", catalog = "")@EntityListeners(EntityToPersistListener.class)public class EntityToPersist implements Serializable {

检查此链接以获取更多参考



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5169054.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存