课堂笔记2

分页插件pageHelper使用

  1. 在Pom.xml中导包
  2. 在ApplicationCntext.xml中把架包告诉给SqlSessionfactory
  3. 在Service中指定page和size
  4. Controller 把得到的结果封装到PageInfo中在进行使用ModelAndView返回

所有需要返回数据到页面显示的全部都需要封装到ModelAndView中

分页架包

<dependency>
      <groupId>com.github.pagehelper</groupId>
      <artifactId>pagehelper</artifactId>
      <version>5.1.2</version>
</dependency>
课堂笔记2课堂笔记2 richard90 发布了2 篇原创文章 · 获赞 0 · 访问量 27 私信 关注
上一篇:数据显示到前端


下一篇:modelAndView重定向到外网