我正在使用休眠標準api來獲取txn和txn_products表的數據。 下面是映射。休眠標準沒有填充關聯
類事務處理:
@Entity
@DynamicUpdate(value=true)
@Table(name="txn")
public class Txn
{
@OneToMany(fetch=FetchType.LAZY , mappedBy = "transaction" , cascade = CascadeType.ALL)
Set<TxnProduct> txnProducts = null;
@Id
@Column(name="id" , nullable=false)
private String id;
......
}
類TxnProduct:
@Entity
@DynamicUpdate(true)
@Table(name="txn_product")
public class TxnProduct
{
@Id
@Column(name="id" , nullable=false)
private String id;
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="txn_id")
private Txn transaction ;
.....
}
業務邏輯:
Session sx = .......... ;
Criteria Q = sx.createCriteria(Txn.class, "txn");
Q.createAlias("txn.txnProducts", "txnProducts" , JoinType.INNER_JOIN);
List<Txn> L = (List<Txn>) Q.list();
logger.info(L) ;
for(Txn T : L)
{
logger.info(T);
logger.info(T.getTxnProducts());
}
sx.close();
在執行業務邏輯List L
回報Txn
對象在數據庫中的每個TxnProduct
,但什麼我期望從休眠c riteria將爲txn表中的每一行返回Txn
對象,並在其中設置Set<TxnProduct>
。
我試過Q.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY);
但它沒有幫助。 謝謝。