自动生成时间戳
创建新记录时必须自动生成时间戳,更新记录时必须自动生成修改后的时间戳。
谁能告诉我如何实现这个。 我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下代码:
You can use the following code:
最简单的是使用 @Version 注释(文档 此处)
只需将以下内容添加到您的实体中:
它会自动执行此操作
The easiest is to use @Version annotation (documentation here)
Just add the following to your entities:
And it will do it automatically