java hibernate - 如何将日期列映射为日期时间?
在我的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 @Temporal-annotation 标记日期对象:
You can mark the Date-object with @Temporal-annotation: