gpt4 book ai didi

java - 通过 Hibernate Projections on Entity with ManyToOne 关系在 SQL 查询中使用更少的列

转载 作者:搜寻专家 更新时间:2023-11-01 02:55:58 25 4
gpt4 key购买 nike

我正在尝试构建一个较小的 SQL,以避免为 hibernate 条件默认构建的“select * from A”。

如果我使用简单的字段(没有关系),通过“变形金刚”,我可以设法拥有这个 SQL:

select description, weight from Dog;

嗨,我有这个实体:

@Entity
public class Dog
{
Long id;
String description;
Double weight;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "person_id", nullable = false)
Person owner;
}

@Entity
public class Person
{
Long id;
String name;
Double height;
Date birthDate;
}

我的目标是:

select description, weight, owner.name from Dog

我用标准(和子标准)试过这个:

Criteria dogCriteria = sess.createCriteria(Dog.class);
ProjectionList proList = Projections.projectionList();
proList.add(Projections.property("description"), description);
proList.add(Projections.property("weight"), weigth);
dogCriteria.setProjection(proList);

Criteria personCriteria = dogCriteria.createCriteria("owner");
ProjectionList ownerProList = Projections.projectionList();
ownerProList.add(Projections.property("name"), description);
dogCriteria.setProjection(ownerProList); //After this line, debugger shows that the
//projection on dogCriteria gets overriden
//and the query fails, because "name" is
//not a field of Dog entity.

我应该如何使用投影来获得更小的 SQL、更少的列?提前致谢。

最佳答案

首先,

select description, weight, owner.name from Dog

不是有效的 SQL。它必须是这样的

select description, weight, Person.name
from Dog join Person on Dog.person_id = Person.id

相反。其次,为什么?虽然可以做您想做的事(见下文),但通过 Criteria API 这样做非常冗长,而且您什么也得不到显示。除非所述列是巨大的 blob 或者您正在选择数十万条记录,否则几列的数据传输节省可以忽略不计。无论哪种情况,都有更好的方法来处理这个问题。

任何人,要为标准做你想做的事,你需要通过别名加入链接表(人)并使用所述别名指定 ma​​in 标准的投影:

Criteria criteria = session.createCriteria(Dog.class, "dog")
.createAlias("owner", "own")
.setProjection( Projections.projectionList()
.add(Projections.property("dog.description"))
.add(Projections.property("dog.weight"))
.add(Projections.property("own.name"))
);

Criteria Projections documentation 中有上述内容的描述和示例.请记住,执行时,上述条件将返回一个对象数组列表。您需要指定 ResultTransformer以便将结果转换为实际对象。

关于java - 通过 Hibernate Projections on Entity with ManyToOne 关系在 SQL 查询中使用更少的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1618394/

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