pagehelper 分页不生效,总页数总是1解决方案

问题:

  后台查询后的数据只有1页,已经设置了PageHelper也没用

     PageHelper.startPage(pageNum,pageSize);
        ModelAndView mv=new ModelAndView();
     Integer count= secondService.message();
        mv.addObject("count",count);
     List seconds= secondService.show();   
     mv.addObject("seconds",seconds);
     PageInfo pageInfo=new PageInfo<>(seconds);
    mv.addObject("pageInfo",pageInfo);

  

解决方案:

PageHelper.startPage(pageNum,pageSize);只对该语句以后的第一个查询语句得到的数据进行分页。

pagehelper 分页不生效,总页数总是1解决方案_第1张图片

 

 

 

问题解决。

PS:

pom.xml

   
    
      com.github.pagehelper
      pagehelper
      5.1.2
    

 mybatis-config.xml


    <plugins>
        <plugin interceptor="com.github.pagehelper.PageInterceptor">
            <property name="helperDialect" value="mysql">property>
            <property name="reasonable" value="true">property>
        plugin>
    plugins>

 

你可能感兴趣的:(pagehelper 分页不生效,总页数总是1解决方案)