如何使用Hibernate <subselect>:</subselect>

时间:2011-05-12 09:10:04

标签: hibernate

我是hibernate的新手。我需要了解以下问题:

(1)什么是hibernate映射中的subselect?

(2)如何在hbm文件中映射subselect?

(3)如果我使用subselect检索值,那么如何在java Action类中获取检索到的值。

2 个答案:

答案 0 :(得分:7)

  1. 根据section 5.1.3中给出的描述,subselect元素用于定义基于任意本机查询结果的只读/不可变实体。
  2. 在同一来源中,只需在subselect元素中使用class而不是table属性,然后使用查询中定义的列名作为列名称属性映射。 (以下是从第5.1.3节逐字逐句

    <class name="Summary">
      <subselect>
        select item.name, max(bid.amount), count(*)
        from item
        join bid on bid.item_id = item.id
        group by item.name
      </subselect>
      <synchronize table="item"/>
      <synchronize table="bid"/>
      <id name="name"/>
      ...
    </class>
    
  3. 使用subselect元素中的查询列创建映射后,您应该能够像访问任何其他实体一样访问属性。

答案 1 :(得分:2)

实际上,您不需要为子选择建模,您可以创建使用它们的查询。检查:http://docs.jboss.org/hibernate/core/3.3/reference/en/html/queryhql.html#queryhql-subqueries

(编辑:上面链接中的示例)

String hql = "from Cat as fatcat "+
             "where fatcat.weight > ( "+
             "  select avg(cat.weight) from DomesticCat cat "+
             ")";
List fatcats = session.createQuery(hql);