当依赖属性更改时如何在实体上设置 ModifiedDate

发布于 2024-12-02 15:37:43 字数 701 浏览 1 评论 0原文

假设 JPA 实体 Foo。通过添加注释,我可以处理 createdDatemodifiedDate 属性的更新。更改 name 并保留 Foo 后,createdDate 已正确更新。但这对于 bars 不起作用,它是 Bar 实体列表

@Entity
class Foo {
  ...

  String name;

  @OneToMany(cascade = CascadeType.PERSIST)
  List<Bar> bars;

  Date modifiedDate;
  Date createdDate;

  @PrePersist
  public void updateCreatedDate() {
    dateCreated = new Date();
  }

  @PreUpdate
  public void updateModifiedDate() {
    lastModified = new Date();
  }

  ...
}

@Entity
class Bar {
  ...
}

如果 bars< 中的一个项目是否可以更新 Foo /code> 更改并保留?

Assume the JPA-Entity Foo. By adding annotations, i can handle updating the createdDate and modifiedDate properties. After changing name and persisting Foo, createdDate is updated correctly. But this does not work for bars which is a List of Bar Entities

@Entity
class Foo {
  ...

  String name;

  @OneToMany(cascade = CascadeType.PERSIST)
  List<Bar> bars;

  Date modifiedDate;
  Date createdDate;

  @PrePersist
  public void updateCreatedDate() {
    dateCreated = new Date();
  }

  @PreUpdate
  public void updateModifiedDate() {
    lastModified = new Date();
  }

  ...
}

@Entity
class Bar {
  ...
}

Is it possible to update Foo if one Item in bars changes and is persisted?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九八野马 2024-12-09 15:37:43

您可以封装对条形列表的每次修改,并在每次修改列表时将实体标记为脏(例如,通过将修改日期设置为另一个值):

public List<Bar> getBars() {
    return Collections.unmodifiableList(this.bars);
}

public void addBar(Bar b) {
    this.bars.add(b);
    this.modifiedDate = new Date(0L);
}

...

请注意,这将生成更多查询,因为通常添加条形只需要在 bar 表中插入一个(如果使用连接表,则在连接表中也需要插入一个)。现在,每个栏的添加也会导致 Foo 表中的更新。

You might encapsulate every modification to the list of bars, and mark the entity as dirty (by setting the modification date to another value, for example) each time the list is modified:

public List<Bar> getBars() {
    return Collections.unmodifiableList(this.bars);
}

public void addBar(Bar b) {
    this.bars.add(b);
    this.modifiedDate = new Date(0L);
}

...

Note that this will generate more queries, because adding a bar normally needs just one insert in the bar table (and one in the join table if a join table is used). Now every bar addition will also cause an update in the Foo table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文