gpt4 book ai didi

java - 条件构建器 joinSet 获取对象而不是对象集

转载 作者:行者123 更新时间:2023-12-01 10:09:19 25 4
gpt4 key购买 nike

我有 2 个具有 OneToMany 关系的实体。

@Entity
public class Table1 implements Serializable {

@Id
private Long id;

private String field1;
private String field2;
private String field3;

@OneToMany
@JoinColumn(name = "table1_id")
private Set<Table2> tables2;
}

@Entity
public class Table2 {

@Id
private Long id;

private String field1;
}

我想使用条件生成器从 Table1 获取数据到附加对象 Table1Trimmed

public class Table1Trimmed {

private Long id;
private Set<Table2> tables2;

public Table1Trimmed(Long id, Set<Table2> tables2) {
this.id = id;
this.tables2 = tables2;
}

}

我就是这样做的

CriteriaQuery<Table1Trimmed> cq = criteriaBuilder.createQuery(Table1Trimmed.class);
Root<Table1> table1Root = cq.from(Table1.class);
SetJoin<Table1, Table2> tables2Join = table1Root.joinSet("tables2");
cq.select(criteriaBuilder.construct(Table1Trimmed.class, table1Root.get("id"), tables2Join));
List<Table1Trimmed> tables1Trimmed = em.createQuery(cq).getResultList();

但是当我运行我的应用程序时,我收到此错误

java.lang.NoSuchMethodException: Table1Trimmed.<init>(java.lang.Long, Table2)
at java.lang.Class.getConstructor0(Class.java:3082)
at java.lang.Class.getConstructor(Class.java:1825)
at org.eclipse.persistence.internal.security.PrivilegedAccessHelper.getConstructorFor(PrivilegedAccessHelper.java:172)
at org.eclipse.persistence.internal.jpa.querydef.CriteriaQueryImpl.populateAndSetConstructorSelection(CriteriaQueryImpl.java:400)
at org.eclipse.persistence.internal.jpa.querydef.CriteriaQueryImpl.select(CriteriaQueryImpl.java:93)

这意味着框架想要将 Table2 类的对象注入(inject)到我的 Table1Trimmed 构造函数中,而不是 Table2 对象集。有没有办法使用标准生成器来实现这一目标?

最佳答案

最佳解决方案是创建仅包含特定字段的附加只读实体。

@ReadOnly
@Entity("table1trimmed")
@Table("table1")
public class Table1Trimmed {

@Id
private Long id;
@OneToOne
@JoinFetch(JoinFetchType.OUTER)
@JoinColumn(name = "table1_id")
private Set<Table2> tables2;

}

好吧,我在这里找到了间接答案[1]

[1] 2 JPA entities on the same table

关于java - 条件构建器 joinSet 获取对象而不是对象集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36240756/

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