java hibernate - 如何将日期列映射为日期时间?

发布于 2024-11-08 00:19:22 字数 83 浏览 0 评论 0原文

在我的sql中有以下日期类型: 日期、时间、年份、日期时间、时间戳。

我的班级拥有一个日期对象。 我如何选择应在数据库中创建哪种类型?

In my sql there are the following date types:
Date ,Time,Year, Datetime, timestamp.

my class holds a date object.
How can I choose which type should be created in the DB?

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

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

发布评论

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

评论(1

孤蝉 2024-11-15 00:19:22

您可以使用 @Temporal-annotation 标记日期对象:

在普通 Java API 中,时间
时间精度没有定义。什么时候
处理时态数据,你可能会
想要描述预期的
数据库的精度。时态数据
可以有日期、时间或时间戳
精度(即实际日期,仅
时间,或两者)。使用@Temporal
注释来微调。

@Temporal(TemporalType.TIMESTAMP) 
private Date someDate;

You can mark the Date-object with @Temporal-annotation:

In plain Java APIs, the temporal
precision of time is not defined. When
dealing with temporal data you might
want to describe the expected
precision in database. Temporal data
can have DATE, TIME, or TIMESTAMP
precision (ie the actual date, only
the time, or both). Use the @Temporal
annotation to fine tune that.

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