Mybatis分页插件 - PageHelper
如果你也在用Mybatis,建议尝试该分页插件,这一定是最方便使用的分页插件。
该插件目前支持以下数据库的物理分页:
- Oracle
- Mysql
- MariaDB
- SQLite
- Hsqldb
- PostgreSQL
- DB2
- SqlServer(2005+)
- Informix
3.7.1更新日志:
- 增加Informix数据库支持,设置dialect值为informix即可
- 解决入参为不可变Map类型时的错误
Maven坐标
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>3.7.1</version>
</dependency>
下载JAR包
分页插件pagehelper.jar:
- https://oss.sonatype.org/content/repositories/releases/com/github/pagehelper/pagehelper/
- http://repo1.maven.org/maven2/com/github/pagehelper/pagehelper/
由于使用了sql解析工具,你还需要下载jsqlparser.jar(这个文件完全独立,不依赖其他):
- http://repo1.maven.org/maven2/com/github/jsqlparser/jsqlparser/0.9.1/
- http://git.oschina.net/free/Mybatis_PageHelper/attach_files
文章转载自 开源中国社区 [http://www.oschina.net]
时间: 2024-10-22 16:23:18