码迷,mamicode.com
首页 > 系统相关 > 详细

Hibernate查询效率对比

时间:2014-08-03 15:08:05      阅读:377      评论:0      收藏:0      [点我收藏+]

标签:blog   http   java   使用   os   strong   io   art   

查询已知表名的实体时推荐使用getHibernateTemplate().executeWithNativeSession() + SQLQuery方式。

 

以下测试使用JUnit进行,仅查询一次,查询结果为5条记录。各种方式的详细代码及执行时间如下所示:

 

方式1,正常getHibernateTemplate().find()方式(183ms):

 

[java] view plaincopy
 
  1. List list = getHibernateTemplate()  
  2. .find(  
  3. "select o.id from  SfmFileIndex o where o.bussNo = ? and o.typePath = ? and o.validStatus = ? order by o.uploadTime",  
  4. new Object[] { bussNo, typePath, "1" });  

 

 

方式2,使用getHibernateTemplate().execute() + Query方式(214ms):

 

[java] view plaincopy
 
  1. List list = (List) getHibernateTemplate().execute(  
  2.         new HibernateCallback() {  
  3.             public Object doInHibernate(Session session)  
  4.                 throws HibernateException, SQLException {  
  5.                 Query query = session.createQuery("select o.id from  SfmFileIndex o where o.bussNo = ? and o.typePath = ? and o.validStatus = ? order by o.uploadTime");  
  6.                 query.setParameter(0, bussNo);  
  7.                 query.setParameter(1, typePath);  
  8.                 query.setParameter(2, "1");  
  9.                 return query.list();  
  10.             }  
  11.         });  

 

 

方式3,使用getHibernateTemplate().executeWithNativeSession() + Query方式(184ms):

 

[java] view plaincopy
 
  1. List list = (List) getHibernateTemplate().executeWithNativeSession(  
  2.         new HibernateCallback() {  
  3.             public Object doInHibernate(Session session)  
  4.                     throws HibernateException, SQLException {  
  5.                  Query query = session  
  6.                         .createQuery("select o.id from  SfmFileIndex o where o.bussNo = ? and o.typePath = ? and o.validStatus = ? order by o.uploadTime");  
  7.                 query.setParameter(0, bussNo);  
  8.                 query.setParameter(1, typePath);  
  9.                 query.setParameter(2, "1");  
  10.                 return query.list();  
  11.             }  
  12.         });  

 

 

方式4,使用getHibernateTemplate().execute() + SQLQuery方式(102ms):

 

[java] view plaincopy
 
  1. List list = (List) getHibernateTemplate().execute(  
  2.             new HibernateCallback() {  
  3.                         public Object doInHibernate(Session session)  
  4.                                 throws HibernateException, SQLException {  
  5.                             SQLQuery query = session  
  6.                                     .createSQLQuery("select o.id from  Sfm_FileIndex o where o.bussNo = ? and o.typePath = ? and o.validStatus = ? order by o.uploadTime");  
  7.                             query.setParameter(0, bussNo);  
  8.                             query.setParameter(1, typePath);  
  9.                             query.setParameter(2, "1");  
  10.                             return query.list();  
  11.                         }  
  12.                     });  

 

 

方式5,使用getHibernateTemplate().executeWithNativeSession() + SQLQuery方式(68ms):

 

[c-sharp] view plaincopy
 
  1. List list = (List) getHibernateTemplate().executeWithNativeSession(  
  2.         new HibernateCallback() {  
  3.             public Object doInHibernate(Session session)  
  4.                     throws HibernateException, SQLException {  
  5.                 SQLQuery query = session  
  6.                         .createSQLQuery("select o.id from  Sfm_FileIndex o where o.bussNo = ? and o.typePath = ? and o.validStatus = ? order by o.uploadTime");  
  7.                 query.setParameter(0, bussNo);  
  8.                 query.setParameter(1, typePath);  
  9.                 query.setParameter(2, "1");  
  10.                 return query.list();  
  11.             }  
  12.         });  

 

 

方式6,使用JDBC (用于比较,代码不够健壮)(37ms):

 

[java] view plaincopy
 
  1. PreparedStatement ps = getSession()  
  2. .connection()  
  3. .prepareStatement(  
  4. "select o.id from sfm_fileindex o where o.bussNo = ? and o.typePath = ? and o.validStatus = ? order by o.uploadTime");  
  5. ps.setString(1, bussNo);  
  6. ps.setString(2, typePath);  
  7. ps.setString(3, "1");  
  8. ResultSet rs = ps.executeQuery();  
  9. List list = new ArrayList();  
  10. while (rs.next()) {  
  11. list.add(new Long(rs.getLong(1)));  
  12. }  
  13. rs.close();  
  14. ps.close();  

 

Hibernate查询效率对比,布布扣,bubuko.com

Hibernate查询效率对比

标签:blog   http   java   使用   os   strong   io   art   

原文地址:http://www.cnblogs.com/a757956132/p/3888321.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!