Mybatis实现分页功能
问题 在普通的分页过程中,要查询出所有的数据,并查询出count才能进行分页,代码量多,处理起来比较麻烦! 处理 使用mybatis分页插件PageHelper,使用起来十分方便。该插件支持以下数据库: mysql oracle mariaDB SQLite Hsqldb PostgreSQL DB2 SqlServer Informix H2 对应于github的项目地址: https://github.com/pagehelper/Mybatis-PageHelper mybatis分页插件依赖 com.github.pagehelper pagehelper
用户评论