我是hibernate的新手。我需要了解以下问题:
(1)什么是hibernate映射中的subselect?
(2)如何在hbm文件中映射subselect?
(3)如果我使用subselect检索值,那么如何在java Action类中获取检索到的值。
答案 0 :(得分:7)
subselect
元素用于定义基于任意本机查询结果的只读/不可变实体。在同一来源中,只需在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>
使用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);