Using dynamic instantiation In Hibernate

王朝other·作者佚名  2006-12-18
窄屏简体版  字體: |||超大  

hibernate中用select new 动态构造对象,如果select出的对象不是一个具体mapped对象,则hibernate返回一个

对象数组的list,要对每个数组元素cast,势必代码显得不够简捷和coarse-grained,下面的例子描述了如何实时构造java对象

Iterator i = session.createQuery(

"select item.id, item.description, bid.amount " +

"from Item item join item.bids bid " +

"where bid.amount > 100"

)

.list()

.iterator();

while ( i.hasNext() ) {

Object[] row = (Object[]) i.next();

Long id = (Long) row[0];

String description = (String) row[1];

BigDecimal amount = (BigDecimal) row[2];

// ... show values in a report screen

}

Since the previous example was verbose and not very object-oriented (working

with a tabular data representation in arrays), we can define a class to represent

each row of results and use the HQL select new construct:

select new ItemRow( item.id, item.description, bid.amount )

from Item item join item.bids bid

where bid.amount > 100

Assuming that the ItemRow class has an appropriate constructor (you have to write

that class), this query returns newly instantiated (transient) instances of ItemRow,

as you can see in the next example:

Iterator i = session.createQuery(

"select new ItemRow( item.id, item.description, bid.amount ) " +

"from Item item join item.bids bid " +

"where bid.amount > 100"

)

.list()

.iterator();

while ( i.hasNext() ) {

ItemRow row = (ItemRow) i.next();

// Do something

}

The custom ItemRow class doesn’t have to be a persistent class; it doesn’t have to be

mapped to the database or even be known to Hibernate. ItemRow is therefore only

a data-transfer class, useful in report generation.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航