gpt4 book ai didi

java - 仅选择 HQL 中链接实体中列的子集

转载 作者:行者123 更新时间:2023-11-30 07:38:27 25 4
gpt4 key购买 nike

请不要问我为什么我需要这样做,因为即使我认为我可以找到另一种方法来解决我的特定问题,我也想更多地了解 HQL 及其局限性。

给定以下实体

@Entity
class Child {

private String someAttribute1;
.....
private String someAttributeN;

@ManyToOne(EAGER)
private Parent parent;

}

class Parent {

private String someParent1;
....
private String someParentN;
}

如果我选择Child,那么Hibernate会自动在单个连接的SQL中从ChildParent获取所有列,这就是典型的期望案例。

有时我知道,对于映射有大量列的实体,我只需要一个子集。

如果我从子项中选择item.someAttribute1作为someAttribute1,item.someAttribute2作为someAttribute2,item.someAttribute3作为someAttribute3等绑定(bind)到ResultTransformer我可以让Hibernate仅返回 SQL 中的 3 列,或者如果我列出更多列。好的,这很酷,而且很有魅力。

但是,如果我只需要从 Child 获取 3 列,从 Parent 获取 2 列,而其余的可以为 null,并具体化一个 Child 实体及其关系,我不能写出以下内容

select item.someAttribute1 as someAttribute1, item.someAttribute2 as someAttribute2, item.someAttribute3 as someAttribute3, item.parent.someParent1 as parent.someParent1, item.parent.someParent2 as parent.someParent2 from Child item left join item.parent

上面的方法不起作用,因为 Hibernate 不允许组成别名。它不允许我使用 asparent.someName 子句,因为别名可能应该是扁平的。

举一个反例,在 LINQ 等语言中,这个问题并不适用

from Child c in children
select new Child {
SomeAttribute1 = c.someAttribute1,
SomeAttribute2 = c.someAttribute2,

Parent = new Parent {
Attribute1 = c.Parent.Attribute1,
.......
}
}

通过上述语句, Entity Framework 将仅获取所需的列。

我绝对不想在 Hibernate for Java 和 Entity Framework for C# 之间进行比较或批评。

我只需要获取组成具有 @ManyToOne 关系的实体的列的子集,以优化内存和带宽使用。一些列来自子实体,一些列来自父实体。

我只是想知道在 Hibernate 中是否以及如何实现类似的目标。使用 Parent 类的对象填充结果集中的 parent 属性,该对象仅填充列的子集(其余为 null 没有问题)。我正在愉快地使用 ResultTransformer

最佳答案

它有两个问题。

  1. Hibernate 不允许在 HQL 中使用嵌套别名,例如 asparent.someName。它会产生解析错误。但您可以使用 Projections.property("parent.someName") 将嵌套别名与 Criteria 结合使用。

  2. Hibernate 没有结果转换器来使用嵌套别名填充结果对象。

您可以将 Criteria 请求与自定义结果转换器结合使用,如下所述

How to transform a flat result set using Hibernate

关于java - 仅选择 HQL 中链接实体中列的子集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35041509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com