spring boot 整合pagehelper 分页不生效,查询所有数据

spring boot 整合pagehelper 分页不生效,查询所有数据
今天发现以前写的分页莫名其妙的失效,直接查询所有的数据。
加入以下三个依赖就可以了

	
		com.github.pagehelper
		pagehelper
		5.1.2
	
	
		com.github.pagehelper
		pagehelper-spring-boot-autoconfigure
		1.2.5
	

	
		com.github.pagehelper
		pagehelper-spring-boot-starter
		1.2.5
	

接口
@Override
@RequestMapping(value="/getBrand", method = RequestMethod.POST)
@ApiOperation(value=“通过品牌查询对象获取品牌信息”, notes=“通过品牌查询对象获取品牌信息”)
public Msg getBrand(@RequestParam Integer pageNum, @RequestParam Integer pageSize) {
Msg msg=Msg.ok();
PageHelper.startPage(pageNum, pageSize);
List brands= brandMapper.getBrand();
PageInfo pageInfo=new PageInfo(brands);
msg.setData(pageInfo);
return msg;
}

你可能感兴趣的:(spring boot 整合pagehelper 分页不生效,查询所有数据)