在 hibernate 中使用 Criteria API 限制日期
情况是这样的。 SQL Server中日期的格式与oracle中不同。在 SQL Server 中,它存储为时间戳。 Restriction.eq 、 Restriction.lt 、 Restriction.gt 如何在 Date 对象上工作?有没有办法只使用日期而不使用时间?
The situation is like this. The format of the date in SQL server is different from oracle. In SQL server it is stored as TimeStamp. How does Restriction.eq , Restriction.lt, Restriction.gt work on Date objects ? Is there any way to just use date and not the time ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 这个答案,您可以使用
Restriction .ltProperty
以及日期字段的相关限制,Hibernate 会尽力解析它们。如果此方法不起作用,您始终可以使用
Restrictions.sqlRestriction
在本机 SQL 中编写限制。According to this answer, you can use
Restriction.ltProperty
and related restrictions on date fields and Hibernate will do its best to parse them.In case this approach should not work, you can always write your restrictions in native SQL using
Restrictions.sqlRestriction
.