概述
1、在该SSM工程的pom.xml中加入PageHelper的分页插件依赖(若是版本号不对,可以尝试修改一下)
1 <!-- 分页插件 --> 2 <dependency> 3 <groupId>com.github.miemiedev</groupId> 4 <artifactId>mybatis-paginator</artifactId> 5 <version>1.2.15</version> 6 </dependency> 7 <dependency> 8 <groupId>com.github.pagehelper</groupId> 9 <artifactId>pagehelper</artifactId> 10 <version>3.4.2-fix</version> 11 </dependency>
2、在myBatis的配置文件中(SqlMapConfig.xml)加入分页插件的依赖:(下面这是SqlMapConfig.xml中的全部内容)
1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE configuration 3 PUBLIC "-//mybatis.org//DTD Config 3.0//EN" 4 "http://mybatis.org/dtd/mybatis-3-config.dtd"> 5 <configuration> 6 7 <!-- 配置分页插件 --> 8 <plugins> 9 <plugin interceptor="com.github.pagehelper.PageHelper"> 10 <!-- 设置数据库类型 Oracle,Mysql,MariaDB(mysql分支),SQLite,Hsqldb,PostgreSQL六种数据库--> 11 <property name="dialect" value="mysql"/> 12 </plugin> 13 </plugins> 14 </configuration>
3、在spring整合文件(xml)中加入下面这句话:
1 <!-- 加载mybatis的全局配置文件 --> 2 <property name="configLocation" value="classpath:SqlMapConfig.xml" />
别忘加对Maven工程进行Maven install!!!!!!
4、ServiceImpl(此处我的EUDataGridResult是我返回给前台的一个实体类,把list集合封装起来了)
EUDataGridResult:
5、Controller
6、我前台测试代码,界面比较丑,人家是用异步Ajax请求,我就简单模拟了一下:
页面:
7、结果如下:(我总共有十条数据,查询第三页,每页有四条数据)
转载于:https://www.cnblogs.com/rgever/p/9455741.html
最后
以上就是无限猫咪为你收集整理的SSM框架使用分页插件显示信息的全部内容,希望文章能够帮你解决SSM框架使用分页插件显示信息所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复