• Hibernate查询效率对比


    查询已知表名的实体时推荐使用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();  
  • 相关阅读:
    Mysql流程控制语句和存储过程
    第七章 MySQL基础
    第六章 操作数据
    第四章 数据库操作
    第三章 使用MySQL图形化工具
    第二章 初识MySQL
    第一章 数据库基础
    Live555源码学习02 ---- 框架
    Live555源码学习01 ---- 编译
    SRS4.0之RTMP转WebRTC02 ---- RTMP推流到SRS
  • 原文地址:https://www.cnblogs.com/a757956132/p/3888321.html
Copyright © 2020-2023  润新知