MyBatis | MyBatis分页插件
如果你也在用 MyBatis,建议尝试该分页插件,这一定是最方便使用的分页插件。分页插件支持任何复杂的单表、多表分页。 IDE:IDEA 数据库:MySQL 5.5 Maven工程 1.引入依赖(本例中使用Maven) < dependency > < groupId > com . github . pagehelper < / groupId > < artifactId > pagehelper < / artifactId > < version > 5.1 .0 < / version > < / dependency > < dependency > < groupId > com . github . jsqlparser < / groupId > < artifactId > jsqlparser < / artifactId > < version > 1.3 < / version > < / dependency > 2.编辑mybatis核心配置文件,配置分页插件 < plugins > < plugin interceptor = "com.github.pagehelper.PageInterceptor" > < property name = "helperDialect" value = "mysql" / > < property name =