Hibernate - 集合未填充所有子项

发布于 2024-12-08 08:31:47 字数 387 浏览 0 评论 0原文

我在休眠期间遇到了一个非常奇怪的问题。

我们正在使用 Grails 和 GORM 来开发应用程序。

行为如下。 假设我有一个关系部门 ->雇员。 基本上假设我有 Dept.id=1,有 3 名员工,Dept.id=2,有 5 名员工。

我们正在尝试创建一个类似的查询。 检索employee.id = X的所有部门。

让它通过join/criteria或任何我们让查询工作的方式,但集合中填充的唯一子项是与id = X匹配的员工。

如果我这样做也没关系getSize 或其他什么,该集合永远不会填充真实数据,我的意思是其他 3 或 4 名员工。

这是一个非常奇怪的问题,说实话,我过去从未经历过。

任何帮助将不胜感激。

谢谢。

I have been having a very weird issue in hibernate.

We are using Grails and GORM to develop an application.

The behavior is the following.
Lets assume I have a relationship Department -> Employees.
Basically lets suppose I have Dept.id=1 which have 3 employees and Dept.id=2 which have 5 employees.

We are trying to create a query like.
Retrieve all the departments where employee.id = X.

Let it be via join/criteria or whatever we get the query working, but the only child populated in the collection is the employee that match the id = X.

It doesnt matter if I do a getSize or whatever, the collection never gets populated with the real data, I mean, the other 3 or 4 employees.

This is a very weird issue and to be honest, I never experienced it in the past.

Any help will be appreciated.

Thanks.

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

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

发布评论

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

评论(2

烦人精 2024-12-15 08:31:47

您是否尝试过使用 Hibernate.initialise(proxy)?

初始化方法初始化代理对象。

Have you ever tried to use Hibernate.initialise(proxy)?

Initialise method inits the proxy object.

软的没边 2024-12-15 08:31:47

要查看发生了什么,请按照以下步骤操作:

  1. 配置 Hibernate 以输出它生成的 SQL。看看它实际查询什么。
  2. 如果这没有帮助,请将服务器日志记录设置为 DEBUG,然后查看 Hibernate 会输出什么内容。
  3. 如果仍然没有帮助,请将 Hibernate 源附加到 Eclipse 并进行单步调试。

To see what's going on, follow these steps:

  1. Configure Hibernate to output the SQL it generates. See what its actually querying.
  2. If that doesn't help, up the server logging to DEBUG, and see what Hibernate spits out.
  3. If that still doesn't help, attach the Hibernate source to Eclipse and step debug.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文