- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Contact Interceptor 附加 hibernate 配置
public class ContactInterceptor extends EmptyInterceptor {
/**
*/
private static final long serialVersionUID = -2000639365689865828L;
@Override
public boolean onFlushDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) {
if (entity instanceof LastModifiable) {
if (!Arrays.equals(currentState, previousState)) {
int index = ArrayUtils.indexOf(propertyNames, "modified");
if (index > 0) {
currentState[index] = new Date();
return super.onFlushDirty(entity, id, currentState, previousState, propertyNames, types);
}
}
}
return false;
}
}
地址模型
public class Address extends Model {
/**
*
*/
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue
@Column(name = "id")
private Long id;
@OneToOne
@JoinColumn(referencedColumnName = "id", name = "contact_id")
private Contact contact;
@Column(name = "address")
private String address1;
@Column(name = "address2")
private String address2;
@Column(name = "city")
private String city;
@Column(name = "country")
private String country;
@Column(name = "state")
private String state;
@Column(name = "zipcode")
private String zipcode;
@Column(name = "company")
private String company;
@Override
public Long getId() {
return this.id;
}
@Override
public void setId(Long val) {
this.id=val;
}
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "created", columnDefinition = "DATETIME")
public Date getCreated() {
return created;
}
public void setCreated(Date created) {
this.modified = this.created = created;
}
private Date created = null;
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "modified", columnDefinition = "DATETIME")
public Date getModified() {
return modified;
}
public void setModified(Date modified) {
this.modified = modified;
}
private Date modified;
}
联系人.java
public class Contact extends Model {
/**
*
*/
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "id")
private Long id;
@Column(name = "first_name")
private String firstName;
@Column(name = "last_name")
private String lastName;
@Transient
private String fullName;
@Column(name = "email")
private String email;
@Column(name = "contact")
private String contact;
@JsonIgnore
@OneToMany(mappedBy = "contact", fetch = FetchType.EAGER)
protected Set<Address> addresses = new HashSet<Address>(0);
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getContact() {
return contact;
}
public void setContact(String contact) {
this.contact = contact;
}
public Set<Address> getAddresses() {
return addresses;
}
public void setAddresses(Set<Address> addresses) {
this.addresses = addresses;
}
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "created", columnDefinition = "DATETIME")
public Date getCreated() {
return created;
}
public void setCreated(Date created) {
this.modified = this.created = created;
}
private Date created = null;
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "modified", columnDefinition = "DATETIME")
public Date getModified() {
return modified;
}
public void setModified(Date modified) {
this.modified = modified;
}
private Date modified;
}
主.java
public static void main(String[] args) {
HibernateUtility u = new HibernateUtility();
u.beginTransaction();
Contact c = DBService.getDBService(Contact.class).load(112L);
Address add = new Address();
add.setAddress1("Dummy Address 1");
add.setCity("AHMD");
add.setState("GUJ");
add.setCreated(new Date());
add.setCountry("INR");
add.setContact(c);
c.getAddresses().add(add);
// c.setModified(new Date());
u.endTransaction();
}
我们知道 onFlushDirty 在检测到对象变脏时调用 jboss Doc
但是当我在具有类型集合的联系人中添加地址时,在调试期间我可以看到地址是脏的(因为要插入新记录)但为什么联系人在这里不脏?
在集合修改的情况下,hibernate 是否不检测脏对象?还是我遗漏了什么?
我主要关心的是当 child 变脏或修改父修改日期时也应该更改。
最佳答案
脏对象是在刷新时保存/更新的对象,而不是与它们关联的对象。否则所有与 Contact
相关联的对象也应该被认为是脏的,因为它们包含的联系人已经“改变”,然后与这些对象相关联的所有对象等有效地意味着数据库的很大一部分可以得到被认为是脏的,因为您添加了一个新地址。
唯一的解决方案是手动编写关联对象更改时执行的逻辑,因为 Hibernate 无法了解应用程序的特定业务规则。
关于java - 为什么 onFlushDirty 将地址检测为脏但在 EmptyInterceptor 中未检测到地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41375441/
我的 HibernateInterceptor 有问题。我延长了 EmptyInterceptor并覆盖 onFlushDirty方法。 我使用这种方法手动检查脏值(将以前的值与当前值进行比较)来为更
我想对我的实体更新进行审核。所以我实现了EmptyInterceptor。 我的 onFlushDirty() 方法没有执行,但 afterTransactionCompletion() 确实执行了
Contact Interceptor 附加 hibernate 配置 public class ContactInterceptor extends EmptyInterceptor { /
问题: 为什么从未调用 MyInterceptor#onFlushDirty? 我在 xml 配置中扩展 AbstractEntityManagerFactoryBean
我正在尝试使用 CaSTLe.ActiveRecord 对象的 OnFlushDirty 方法来实现通用的更改审计: protected override bool OnFlushDirty(obje
计划 我正在使用 Hibernate 为一个小项目实现 createDate 和 lastUpdate 时间戳。我使用 EmptyInterceptor 并根据我发现的建议解决方案重载提供的方法 he
我是一名优秀的程序员,十分优秀!