Springboot mybatis pagehelper分页不生效的问题

springboot版本

	
		org.springframework.boot
		spring-boot-starter-parent
		2.1.5.RELEASE
		 

按照正常的代码:

        PageHelper.startPage(pageNum,4);
        WechatAccountExample example = new WechatAccountExample();
        List accounts = wechatAccountMapper.selectByExample(example);
        PageInfo  pageInfo = new PageInfo<>(accounts);
        return pageInfo;

pagehelper配置

#pagehelper分页插件配置
pagehelper:
  helperDialect: mysql
  reasonable: true
  supportMethodsArguments: true
  params: count=countSqle

pom依赖

		
		
			com.github.pagehelper
			pagehelper
			4.1.0
		

结果查出来还是没暖用,全部给查出来了。后来查了很多博客有人说加上

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

还是没用,有人说用一个依赖就行了,


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

还是不行!!!!!

无意中把版本改为了1.2.10,妈的出来了。

记录一下。。。

你可能感兴趣的:(bug修改)