gpt4 book ai didi

java - Hibernate 条件 JOIN + 附加条件(带子句)不适用于多对多关联

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:22:11 27 4
gpt4 key购买 nike

我正在尝试使用 hibernate 条件向 Join 子句添加附加条件。事实上,有一些方法可以做到这一点:

createCriteria(String associationPath, String alias, int joinType, Criterion withClause)

createAlias(String associationPath, String alias, int joinType, Criterion withClause) 

它们可以在一对一和一对多关系下正常工作。但是当我尝试将它们与具有多对多关系的实体一起使用时,出现以下错误:

Caused by: org.postgresql.util.PSQLException: No value specified for parameter 1.

有人能帮帮我吗?粗鲁的例子如下:

@Entity
public class Person {

@Id
@GeneratedValue
private Long id;

@ManyToMany
private Set<PersonName> names;

}

public class PersonName {

@Id
@GeneratedValue
private Long id;

@Column
private String name;

}
public class PersonDao extends HibernateDaoSupport {

public List<Person> findByName() {
Criteria criteria = getSession().createCriteria(Person.class, "p");
criteria.createCriteria("p.names", "names", JoinType.INNER_JOIN, Restrictions.eq("name", "John"));
return criteria.list();
}
}

正在生成的查询是

select this_.id as y0_ from person this_ 
inner join debtor_info this_1_ on this_.id=this_1_.id
left outer join person_person_name personname3_ on this_.id=personname3_.person_id and ( name1_.name=? )
left outer join person_name name1_ on personname3_.person_name_id=name1_.id and ( name1_.name=? )

可以看到,加入了两次join条件,明显不对

提前致谢。

顺便说一句,我正在使用 postgresql 9,Hibernate 3.6.3

最佳答案

这是一个错误 HHH-7355Hibernate criteria JOIN + additional condition (with clause) don't work with many-to-many association并且它不会被修复,因为 Hibernate Criteria API 已被弃用,您应该使用 JPA Crtiterias。你可以尝试使用HQL with clause

from Cat as cat
left join cat.kittens as kitten
with kitten.bodyWeight > 10.0

关于java - Hibernate 条件 JOIN + 附加条件(带子句)不适用于多对多关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10777200/

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