Leach爱喝星冰乐 2021-11-11 15:44 采纳率: 100%
浏览 38
已结题

求解答,mybatis使用PageHelper插件不生效,查询代码紧贴着后面写的也不可以

pom.xml

   <!--PageHelper 分页插件-->
    <dependency>
      <groupId>com.github.pagehelper</groupId>
      <artifactId>pagehelper</artifactId>
      <version>5.1.11</version>
    </dependency>
  </dependencies>

mybatis.xml

    <plugins>
             <plugin interceptor="com.github.pagehelper.PageInterceptor">
                 <!--分页参数合理化  -->
                 <property name="reasonable" value="true"/>
             </plugin>
    </plugins>

测试代码

    public void testSelectAll(){
        SqlSession sqlSession = MyBatisUntils.getOneSession();
        StudentDao studentDao = sqlSession.getMapper(StudentDao.class);
        //在list获取数据前使用PageHelper.startPage方法设置获取到的数据
        //获取第 1 页,3 条内容
        PageHelper.startPage(1,3);
        List<Student> list = studentDao.SelectAll();
        for(Student student:list){
            System.out.println(student);
        }
    }

  • 写回答

2条回答 默认 最新

  • 一剑荒芜 2021-11-11 15:46
    关注

    你这不使用插件返回结果集能行吗
    这样

    PageHelper.startPage(1,3);
    List<Student> list = studentDao.SelectAll();
    return new PageInfo<Student>(list);
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 11月21日
  • 已采纳回答 11月13日
  • 创建了问题 11月11日

悬赏问题

  • ¥100 求用matlab求解上述微分方程的程序代码
  • ¥15 请问各位,如何在Jetson nano主控板的Ubuntu系统中安装PyQt5
  • ¥15 MAC安装佳能LBP2900驱动的网盘提取码
  • ¥400 微信停车小程序谁懂的来
  • ¥15 ATAC测序到底用什么peak文件做Diffbind差异分析
  • ¥15 安装ubantu过程中第一个vfat 文件挂载失败
  • ¥20 GZ::CTF如何兼容一些靶机?
  • ¥15 etcd集群部署问题
  • ¥20 谁可以帮我一下问一下各位
  • ¥15 为何重叠加权后love图的SMD与svyCreateTableOne函数绘制基线表的不一致