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 保存的任何实体)
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01