mybatis分页插件Mybatis_PageHelper 简单案例

Posted Flink菜鸟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis分页插件Mybatis_PageHelper 简单案例相关的知识,希望对你有一定的参考价值。

  源码地址(官网,文档)

  使用条件:

      支持mybatis 3.1.0+

      sql 解析工具(jsqlparser.jar

  下载 Mybatis_PageHelper  版本随意,反正我用的5.0.0

 maven:

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper</artifactId>
    <version>5.0.0</version>
</dependency>

 

xml:

<plugin interceptor="com.github.pagehelper.PageInterceptor">
            <!-- 支持通过Mapper接口参数来传递分页参数 -->
            <property name="supportMethodsArguments" value="true"/>
            <property name="rowBoundsWithCount" value="true"/>
        </plugin>

java:

session.selectList(qdi, map,new RowBounds(startItem, size));

就是这么简单。

更多功能,请查看

 

以上是关于mybatis分页插件Mybatis_PageHelper 简单案例的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis分页插件:PageHelper和PageInfo

Mybatis分页插件

Mybatis分页插件

七:MyBatis逆向工程&分页插件

七:MyBatis逆向工程&分页插件

MyBatis-06-笔记