https://oss.sonatype.org/content/repositories/releases/com/github/pagehelper/pagehelper/
pagehelper-5.1.10.jar
http://repo1.maven.org/maven2/com/github/jsqlparser/jsqlparser/
jsqlparser-2.0.jar
因为使用过程中经常出现jar包冲突,推荐下载这两个版本。
2.加入pagehelper的插件(mybatis配置文件中)
<!-- plugins在配置文件中的位置必须符合要求,否则会报错,顺序如下: properties?, settings?, typeAliases?, typeHandlers?, objectFactory?,objectWrapperFactory?, plugins?, environments?, databaseIdProvider?, mappers? --> <plugins> <!-- com.github.pagehelper为PageHelper类所在包名 --> <plugin interceptor="com.github.pagehelper.PageInterceptor"> <!-- 使用下面的方式配置参数,后面会有所有的参数介绍 --> <property name="param1" value="value1"/> </plugin> </plugins>
3.在单元测试中测试代码
PageInfo包含的全部分页属性
https://www.cnblogs.com/kangoroo/p/7998433.html
mybatis(五)MyBatis的分页插件(pagehelper)
原文:https://www.cnblogs.com/yufengwang/p/11443136.html