关于Mybatis的分页插件PageHelper的使用

如果要使用PageHelper插件,其要求的Mybatis最低版本不能低于3.3,而我使用的是3.4.6版本的,使用的是maven工程构建;以下是pox.xml引入Mybatis以及与spring整合的包\分页插件的包

 <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis</artifactId>
    <version>3.4.6</version>
</dependency>
  <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis-spring</artifactId>
    <version>1.3.0</version>
</dependency>
  <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper</artifactId>
    <version>5.1.2</version>
</dependency>

在mybatis的配置文件sqlMapConfig.xml中的配置详情可以参照点击打开链接

<plugins>
    <plugin interceptor="com.github.pagehelper.PageInterceptor"></plugin>
</plugins>

使用

        @ResponseBody
	@RequestMapping("/articleList")
	public PageInfo<Article>  getArticleList(@RequestParam(value="pn",defaultValue="1")int pn) throws Exception{
		
	        PageHelper.startPage(pn, 8);//开始的页码,每页的数据数量
		
		List<Article> list = articleService.selectNewArticle();
		
		PageInfo<Article> pageInfo = new PageInfo<Article>(list,8);

		return pageInfo;
		
				
	}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值