Hibernate进行多表关联查询

Hibernate对多个表进行查询时,查询结果是多个表的笛卡尔积,或者称为“交叉”连接。 例如:from Student,Book from Student as stu,Book as boo from Student stu,Book boo。注意:让查询中的Student和Book均是表student和book对应的类名,它的名字一定要和类的名字相同,包括字母的大小写。

别名应该服从首字母小写的规则是一个好习惯,这和Java对局部变量的命名规范是一致的。

下面列举一个完整的例子来说明Hibernate对多个表进行关联查询(其中粗体是我们要特别注意的地方,相应表tBookInfo和BookSelection的结构和其对应的hbm.xml、class文件就不一一列举了):

java 代码
  1. String sTest = "from tBookInfo book, BookSelection sel where book.id = sel.bookId";    
  2.   
  3. Collection result = new ArrayList();    
  4.   
  5. Transaction tx = null;    
  6.   
  7. try {    
  8.   
  9.  Session session = HibernateUtil.currentSession();    
  10.   
  11.  tx = session.beginTransaction();    
  12.   
  13.  Query query = session.createQuery(sql);    
  14.   
  15.  result = query.list();    
  16.   
  17.  tx.commit();    
  18.   
  19. catch (Exception e) {    
  20.   
  21.  throw e;    
  22.   
  23. finally {    
  24.   
  25.  HibernateUtil.closeSession();    
  26.   
  27. }    
  28.   
  29. ArrayList sList = (ArrayList) result;    
  30.   
  31. Iterator iterator1 = sList.iterator();    
  32.   
  33. while (iterator1.hasNext()) {    
  34.   
  35.  Object[] o = (Object[]) iterator1.next();    
  36.   
  37.  tBookInfo bookInfo = (tBookInfo) o[0];    
  38.   
  39.  BookSelection bookSelect = (BookSelection) o[1];    
  40.   
  41.  System.out.println("BookInfo-Title: " + bookInfo.getTitle());    
  42.   
  43.  System.out.println("BookSelection-BookSelectionId: " + bookSelect.getId());    
  44.   
  45. }     
  46.   
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值