共计 2109 个字符,预计需要花费 6 分钟才能阅读完成。
自动写代码机器人,免费开通
丸趣 TV 小编给大家分享一下 mybatis 分页插件 pageHelper 的使用示例,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
工作的框架 spring springmvc mybatis3
首先使用分页插件必须先引入 maven 依赖,在 pom.xml 中添加如下
!-- 分页助手 --
dependency
groupId com.github.pagehelper /groupId
artifactId pagehelper /artifactId
version 3.7.5 /version
/dependency
其次需要在配置文件中添加配置,有两种方式
1,新建 mybatis-config.xml 内容如下
?xml version= 1.0 encoding= UTF-8 ?
!DOCTYPE configuration
PUBLIC -//mybatis.org//DTD Config 3.0//EN
http://mybatis.org/dtd/mybatis-3-config.dtd
configuration
!-- 分页助手 --
plugins
!-- com.github.pagehelper 为 PageHelper 类所在包名 --
plugin interceptor= com.github.pagehelper.PageHelper
!-- 数据库方言 --
property name= dialect value= MySQL /
!-- 设置为 true 时,使用 RowBounds 分页会进行 count 查询 会去查询出总数 --
property name= rowBoundsWithCount value= true /
/plugin
/plugins
/configuration
在 spring-mybatis.xml 中添加一个 bean 属性
bean id= sqlSessionFactory > 加载全局的配置文件
property name= configLocation value= classpath:mybatis-config.xml /property
配置 mapper 的扫描,找到所有的 mapper.xml 映射文件。
property name= mapperLocations value= classpath:com/lyitong/mapping/*.xml /property
备注:如果你的 mybatis-config.xml 配置文件开启了如下别名配置:
typeAliases
!-- javabean 的首字母小写的非限定类名来作为它的别名(其实别名是不去分大小写的)。也可在 javabean 加上注解 @Alias 来自定义别名, 例如: @Alias(student) --
package name= com.lyt.usermanage.mapper /
/typeAliases
那么你的 spring 和 mybatis 整合文件就得加上相应的属性,否则会造成 mybatis 配置文件加载不成功报异常,如下:
bean id= sqlSessionFactory > 相比于上面的配置我们这里多了一步
property name= typeAliasesPackage value= classpath:com/lyt/usermanage/pojo/* /property
配置的时候要注意 mybatis 配置文件和 spring-mybatis 整合文件的属性要统一。
2. 如上操作配置完成,下面第二种方法
直接在 spring-mybatis.xml 中配置如下属性
bean id= sqlSessionFactory > 配置文件加载好之后,就可以直接使用,具体使用代码如下:
PageHelper.startPage(Integer.parseInt(currentPage), Integer.parseInt(pageSize));
List LytBbsTz publishTz = bbsTzDao.getPublishTz(userId);
PageInfo LytBbsTz info = new PageInfo LytBbsTz (publishTz);
map.put(status , 1);
map.put(tzList , info.getList());
return map;
前台需要传入的参数是当前页和页面显示数目,当然页面显示数目也可以后台规定,一般在接收参数时最好加上默认配置如下:
@RequestParam(defaultValue= 1 ,value= currentPage)String currentPage, @RequestParam(defaultValue= 10 ,value= pageSize)String pageSize
这是如果接收参数为空字符串时它自身默认显示的页面和条数,这个可以自己规定
看完了这篇文章,相信你对“mybatis 分页插件 pageHelper 的使用示例”有了一定的了解,如果想了解更多相关知识,欢迎关注丸趣 TV 行业资讯频道,感谢各位的阅读!
向 AI 问一下细节