我有一个叫做WebAsset的类:

public class WebAsset {
    private Long id;
    private String url;
    private int status;
    //more fields that are not relevent
}


我需要能够显示WebAsset之间的关系,因此我为该关系表和一个复合键类创建了一个表。

public class WebAssetReferencePK {
    private Long sourceAssetId;
    private Long targetAssetId;
}

public class WebAssetReference {
    private WebAssetReferencePK wpk;
    private Long updateTime;
}


我们被迫使用Hibernate的旧版本,因此我们需要使用xml文件而不是注释。这是参考类的映射:

<class name="ca.gc.cra.www.crawler.valueobject.WebAssetReference" table="webassetreference">
    <composite-id name="webAssetReferencePK" class="ca.gc.cra.www.crawler.valueobject.WebAssetReferencePK">
        <key-property name="sourceAsset" type="java.lang.Long" column="sourceAssetId" />
        <key-property name="targetAsset" type="java.lang.Long" column="targetAssetId" />
    </composite-id>
    <property name="updateTime" type="java.lang.Long" column="updatetime" not-null="true" />
</class>


在组合键中,我得到了我期望的数据库中两个相互关联的ID。但是,当我尝试使用HQL或Criteria查询时,它不起作用,因为PK类与WebAsset之间没有直接关系,因此我需要能够在WebAsset和WebAssetReference之间进行联接。如果我尝试将组合键类型从java.lang.Long更改为WebAsset,则休眠将整个对象存储在WebAssetReference表中,而不仅仅是ID。

我要尝试执行的一个示例是,如果我有一个sourceAssetId,我想返回具有相同源的所有targetAssetId,但是我不想要ID本身,而是想要WebAsset作为每个targetAssetId的主键。

我一直在寻找答案,但是我能找到的每个例子都是不相关的简单例子。

更新1:通过继续搜索,我终于找到了答案。我需要使用一对多的密钥来代替密钥属性。我还没有尝试加入,但其他一切看起来都不错,所以这应该是答案。

更新2:无法使查询与HQL一起使用。这是我正在尝试执行的SQL:

select * from webasset as wa join webassetreference as war on war.targetassetid=wa.webasset_id where war.sourceassetid=?


这是无法使用的HQL:

FROM WebAsset JOIN WebAssetReference WebAssetReference.WebAssetReferencePK.targetAsset=WebAsset WHERE WebAssetReference.WebAssetReferencePK.sourceAsset = :sourceAsset


我收到有关HQL的以下错误:错误-行1:89:意外令牌:。

我会继续尝试,但似乎无法弄清楚HQL。

最佳答案

我发现了如何做到这一点。在上面的情况下,由于我有2列连接到同一表,因此它将不起作用。但是,如果我使用上面相同的WebAsset类,而是使用此类:

 public class TreeNode implements Comparable<TreeNode>{

    private String nodeUrl;
    private Long id;
    private Boolean folder;
    private transient WebAsset nodeAsset = null;
}


使用此.hbm.xml文件:

<class name="ca.gc.cra.www.crawler.valueobject.TreeNode" table="TreeNode">
    <id name="id" type="java.lang.Long" column="treenode_id" >
        <generator class="identity"/>
    </id>
    <many-to-one name="nodeAsset" class="ca.gc.cra.www.crawler.valueobject.WebAsset" column="nodeAsset_id" lazy="false" not-null="false" cascade="none" unique="true" />
    <property name="folder" type="java.lang.Boolean" column="folder" not-null="true" />
    <property name="nodeUrl" length="512"  type="java.lang.String" column="nodeUrl" not-null="true" />

    <set name="children" table="TreeNode" inverse="false" lazy="true" >
        <key column="parentnode_id"/>
            <one-to-many class="ca.gc.cra.www.crawler.valueobject.TreeNode" />
    </set>
</class>


然后,您可以使用以下代码来检索联接:

Session session = HibernateUtil.getSession();
try {
    String hql = "FROM TreeNode tn JOIN tn.nodeAsset WHERE tn.id=5";
    Query query = session.createQuery(hql);
    List result = query.list();
    System.out.println("done");
} catch (HibernateException e) {
    e.printStackTrace();
    throw new Exception("Query failed", e);
} finally {
    session.flush();
    session.close();
}


然后,Hibernate可以正确执行连接。结果将是一个包含每个条目的Object数组的List。该对象包含属于联接的2个类。您必须使用(Object [])强制转换对象以访问元素,然后将其强制转换为适当的类。

我建议不要使用这种方法,因为Hibernate也会尝试加载所有连接的类。在上面的示例中,我从TreeNode获得1行,但它生成了19条select语句。我什至尝试将连接的类设置为延迟加载,但仍会生成所有选择。

10-06 16:03