首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

hibernate hql 多个1查询

2013-11-08 
hibernate hql 多个一查询Session ssessionFactory.getCurrentSession()s.beginTransaction()String hq

hibernate hql 多个一查询

Session s=sessionFactory.getCurrentSession();s.beginTransaction();String hql="from TempPhotoEdit tempPhotoEdit left join fetch tempPhotoEdit.tempPlan left join fetch tempPhotoEdit.systemFodder where IB_ID=?";List<TempPhotoEdit> l=s.createQuery(hql).setParameter(0,"25").list();System.out.println(l);s.getTransaction().commit();
?

热点排行