当前位置: 首页 > 知识库问答 >
问题:

Hibernate HQL投影使用实体很多定义问题

潘坚白
2023-03-14

问题:当我引用实体集合字段作为HQL语句的一部分时,HQL查询没有返回任何结果。它适用于一个HQL投影,例如:

select inc.categoryTypes as categoryTypes from IncidentEntity inc where (inc.id = :id105019)

categoryTypes是IncidentEntity类字段之一(它是定义为多个联接的集合,如下所示)。这很好,但当我尝试引用另一个映射为多个联接的投影集合时,问题就出现了。

select inc.categoryTypes as categoryTypes, inc.consequences as consequences from IncidentEntity inc where (inc.id = :id105019)

一旦我这样做,我就得到一个空的集合。这意味着hibernate生成的SQL查询不会返回任何内容。我已经通过在SQL管理器中执行命令验证了这一点,该命令不返回任何结果。

以下是附带事项:

/**
 * Database entity for the 'incidents' table records.<br>
 * Entity domain object is {@link nz.co.doltech.ims.shared.domains.Incident}
 * @author Ben Dol
 * 
 */
@javax.persistence.Entity(name = "incidents")
@Cache(usage=CacheConcurrencyStrategy.TRANSACTIONAL)
public class IncidentEntity implements Entity {

    ...

    @ManyToMany(fetch = FetchType.LAZY)
    @JoinTable(name = "incident_categorytype", joinColumns = { 
            @JoinColumn(name = "incident_id") }, 
        inverseJoinColumns = {
            @JoinColumn(name = "categorytype_id") 
    })
    private Set<CategoryTypeEntity> categoryTypes = new HashSet<CategoryTypeEntity>();

    @ManyToMany(fetch = FetchType.LAZY)
    @JoinTable(name = "incident_consequence", joinColumns = { 
            @JoinColumn(name = "incident_id") }, 
        inverseJoinColumns = {
            @JoinColumn(name = "consequence_id") 
    })
    private Set<ConsequenceEntity> consequences = new HashSet<ConsequenceEntity>();

    ...

    public Set<CategoryTypeEntity> getCategoryTypes() {
        return categoryTypes;
    }
    public void setCategoryTypes(Set<CategoryTypeEntity> categoryTypes) {
        this.categoryTypes = categoryTypes;
    }

    public Set<ConsequenceEntity> getConsequences() {
        return consequences;
    }
    public void setConsequences(Set<ConsequenceEntity> consequences) {
        this.consequences = consequences;
    }

    ...
}

类别类型实体关系定义:

@ManyToMany(fetch = FetchType.LAZY, mappedBy = "categoryTypes")
private Set<IncidentEntity> incidents = new HashSet<IncidentEntity>();

结果实体关系定义:

@ManyToMany(fetch = FetchType.LAZY, mappedBy = "consequences")
private Set<IncidentEntity> incidents = new HashSet<IncidentEntity>();

数据结构:

使用Hibernate 3.6.10

也许我设置的定义是错误的,或者我缺少HQL的一个限制,我不确定。如果我能在这里得到任何帮助,我将不胜感激。谢谢

你好,本

共有1个答案

刘承悦
2023-03-14

您知道您正在使用此查询生成笛卡尔积,对吗?

查询可以更好地可视化为:

select categoryTypes, consequences 
from IncidentEntity inc 
inner join inc.categoryTypes as categoryTypes
inner join inc.consequences as consequences
where (inc.id = :id105019)

因为没有指定显式联接,所以假定内部联接不是左联接。

让我们假设指定的事件有类别。因此,此查询将返回此事件的类别,这也是您报告的:

select categoryTypes
from IncidentEntity inc 
inner join inc.categoryTypes as categoryTypes
where (inc.id = :id105019)

但当没有结果时,内部联接将不返回结果,因此:

select categoryTypes, consequences 
from IncidentEntity inc 
inner join inc.consequences as consequences
where (inc.id = :id105019)

不会返回任何内容,但您的查询也可能会出现这种情况:

select categoryTypes, consequences 
from IncidentEntity inc 
inner join inc.categoryTypes as categoryTypes
inner join inc.consequences as consequences
where (inc.id = :id105019)
 类似资料:
  • null @suppressLint(“错误常量”)

  • 我是Spring Data投影的新手,我正在尝试在一个新项目中使用此功能。 特别是,我想在与复杂查询关联的回购方法上使用投影。 我用注释注释了我的方法,并声明了一个JPA查询,其中包含几个连接的表/实体和一个复杂的where条件。 在本文中,我了解到可以使用基于接口的投影和基于类的投影,但只有第一个支持嵌套投影。 我需要嵌套投影,但似乎只有使用基于接口的投影才支持此功能,并且这种方法仅适用于自动生

  • 问题内容: 我一直想知道应该使用哪种类型的投影,所以我做了一点测试,涵盖了5种类型的投影(基于docs:https : //docs.spring.io/spring- data/jpa/docs/current / reference / html /#projections ): 1.实体投影 这只是Spring Data存储库提供的标准。这里没什么好看的。 服务: 实体: 2.构造函数投影

  • 我想录制1分钟屏幕内容。搜索google后,发现api level 21包含类。我的应用程序是为api level 18构建的。 我能使用这个类吗?有没有这方面的支持库?

  • 日安。 因此,我有mapping@id@generatedvalue(strategy=generationtype.sequence,generator=“discount_fares_id_sequence”)@sequenceGenerator(name=“discount_fares_id_sequence”,sequenceName=“discount_fares_id_seq”,all

  • itemdao.java posDatabase.java invoice.java 错误:错误:查询返回的列在com.example.qrreceipt.Item中没有字段[item_id,price],即使它们被注释为非空或原语。查询返回的列:[invoice_id,terminal_no,cashier_name]