mybatis下的分页支持所有的数据库

mybatis下的分页支持所有的数据库

ID:34724524

大小:90.53 KB

页数:11页

时间:2019-03-10

mybatis下的分页支持所有的数据库_第1页
mybatis下的分页支持所有的数据库_第2页
mybatis下的分页支持所有的数据库_第3页
mybatis下的分页支持所有的数据库_第4页
mybatis下的分页支持所有的数据库_第5页
资源描述:

《mybatis下的分页支持所有的数据库》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、大家都知道,mybatis的自带分页方法只是逻辑分页,如果数据量很大,内存一定会溢出,不知道为什么开源组织不在里面集成hibernate的物理分页处理方法!在不修改mybatis源代码的情况下,应该怎么使mybatis支持物理分页呢?参考了网上的一些信息,有了下面的解决方法:以oracle为例子 1.把hibernate下的dialect包全部拷贝到mybatis包的jdbc目录下,如下图所示: 2.定义一个ResultSetHandler Interceptorpackagecn.machi.utils;importjava.sql.Statement;i

2、mportjava.util.Properties;importorg.apache.ibatis.executor.resultset.FastResultSetHandler;importorg.apache.ibatis.executor.resultset.ResultSetHandler;importorg.apache.ibatis.plugin.Interceptor;importorg.apache.ibatis.plugin.Intercepts;importorg.apache.ibatis.plugin.Invocation;impor

3、torg.apache.ibatis.plugin.Plugin;importorg.apache.ibatis.plugin.Signature;importorg.apache.ibatis.session.RowBounds;@Intercepts( {@Signature(type =ResultSetHandler.class,method="handleResultSets",args={Statement.class})})publicclassDiclectResultSetHandlerInterceptorimplementsInterc

4、eptor{      publicObjectintercept(Invocationinvocation)throwsThrowable   {       FastResultSetHandlerresultSet=(FastResultSetHandler)invocation.getTarget();              RowBoundsrowBounds=(RowBounds)ReflectUtil.getFieldValue(resultSet,               "rowBounds");              if(r

5、owBounds.getLimit()>0               &&rowBounds.getLimit()

6、et,this);   }      publicvoidsetProperties(Propertiesproperties)   {   }} 3.定义一个StatementHandler的Interceptorpackagecn.machi.utils;importjava.sql.Connection;importjava.util.Properties;importorg.apache.ibatis.executor.statement.PreparedStatementHandler;importorg.apache.ibatis.executo

7、r.statement.RoutingStatementHandler;importorg.apache.ibatis.executor.statement.StatementHandler;importorg.apache.ibatis.jdbc.dialect.OracleDialect;importorg.apache.ibatis.mapping.BoundSql;importorg.apache.ibatis.plugin.Interceptor;importorg.apache.ibatis.plugin.Intercepts;importorg

8、.apache.ibatis.plugin.Invo

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。