Hibernate Criteria API orderBy 和嵌入元素

发布于 2024-10-13 09:08:39 字数 339 浏览 3 评论 0原文

假设我有一个 Report 实体。其中有 @Embeddable ReportPeriod,其中包含 Integer MonthInteger Year 字段。当我尝试按 ReportPeriod reportPeriodReport 报告 进行排序时,它会按 年对 report 进行排序。如何更改排序顺序(,然后)。可以通过任何注释来解决这个问题吗?

Lets say I have a Report entity. Inside it there is @Embeddable ReportPeriod which has Integer month and Integer year fields. When i try to sort my Report report by its ReportPeriod reportPeriod it sorts report by month and year. How to change the order of sort (year and then month). Can this be solved by any of the annotations?

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

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

发布评论

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

评论(1

小梨窩很甜 2024-10-20 09:08:39

我想您想按休眠标准加载多个报告并按嵌入的月份和年份对它们进行排序?

Criteria crit = session.createCriteria(Report.class);
crit.addOrder(Order.asc("reportPeriod.year"));
crit.addOrder(Order.asc("reportPeriod.month"));
...=crit.list();

但我不是 100% 确定 Order 是否可以应用于 @Embeddable,但我希望如此。

I guess you want to load several reports by hibernate criteria and sort them by its embebedded month and year?

Criteria crit = session.createCriteria(Report.class);
crit.addOrder(Order.asc("reportPeriod.year"));
crit.addOrder(Order.asc("reportPeriod.month"));
...=crit.list();

But I am not 100% sure if Order can be applied to an @Embeddable, but is expect it.

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