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 保存的任何实体)
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01