自动生成时间戳

发布于 2024-07-29 02:34:15 字数 98 浏览 4 评论 0原文

创建新记录时必须自动生成时间戳,更新记录时必须自动生成修改后的时间戳。

谁能告诉我如何实现这个。 我正在使用 openJPA。

提前致谢。

I have to auto generate timestamp when I am creating a new record and auto generate modified timestamp when I update a record.

can anybody tell me how do I implement this. I am using openJPA.

thanks in advance.

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

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

发布评论

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

评论(2

初见 2024-08-05 02:34:15

您可以使用以下代码:

@Column
@Temporal(TemporalType.TIMESTAMP)
private Date creationDate;

@Column
@Temporal(TemporalType.TIMESTAMP)
private Date lastModificationDate;

// getters, setters

@PrePersist
void updateDates() {
  if (creationDate == null) {
    creationDate = new Date();
  }
  lastModificationDate = new Date();
}

You can use the following code:

@Column
@Temporal(TemporalType.TIMESTAMP)
private Date creationDate;

@Column
@Temporal(TemporalType.TIMESTAMP)
private Date lastModificationDate;

// getters, setters

@PrePersist
void updateDates() {
  if (creationDate == null) {
    creationDate = new Date();
  }
  lastModificationDate = new Date();
}
转角预定愛 2024-08-05 02:34:15

最简单的是使用 @Version 注释(文档 此处

只需将以下内容添加到您的实体中:

@Version
private java.sql.Timestamp myTimestamp;

/// normal getters & setters here

它会自动执行此操作

The easiest is to use @Version annotation (documentation here)

Just add the following to your entities:

@Version
private java.sql.Timestamp myTimestamp;

/// normal getters & setters here

And it will do it automatically

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