onSave() (for any Entity saved with Hibernate/Spring Data Repositories)(onSave()(对于使用 Hibernate/Spring Data Repositories 保存的任何实体))
问题描述
如果我的实体有计算字段应该在保存到数据库之前更新(db insert
或 update
),如何在 Hibernate 或 Spring Data Repository save()
之前挂钩方法调用?
If my Entity has calculated fields should be updated before saving to database (db insert
or update
),
How can I hook a method call before Hibernate or Spring Data Repository save()
?
推荐答案
我认为对你来说最好的选择是 EntityListener
使用 @PrePersist
和 @PreUpdate
注释,为您的实体侦听器创建配置,您将可以访问要保存的每个实例,每次您尝试使用 hibernate 或 spring 数据存储库持久化或更新某些内容时都会调用此方法
I think the best option for you are EntityListener
using the @PrePersist
and @PreUpdate
annotations, create the configuration for your entity listener and you will get access to each instance that you want to save, this method is being called each time you are trying to persist or update something with hibernate or spring data repositories
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 上面添加一个注解
You just need to add an annotation above your entity bean
@Entity
@Table(name = "", schema = "", catalog = "")
@EntityListeners(EntityToPersistListener.class)
public class EntityToPersist implements Serializable {
检查这个 链接进一步参考
这篇关于onSave()(对于使用 Hibernate/Spring Data Repositories 保存的任何实体)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:onSave()(对于使用 Hibernate/Spring Data Repositories 保存的任何实体)


基础教程推荐
- 不推荐使用 Api 注释的描述 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 从 python 访问 JVM 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 大摇大摆的枚举 2022-01-01