使用Mybatis的PageHelper分頁工具的教程詳解
阿新 • • 發佈:2020-09-02
1、匯入相關的jar包
在pom.xm中加入
<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.1.10</version> </dependency>
2、在Mybatis的配置檔案mybatis-config.xml中加入以下程式碼
<plugins> <!-- com.github.pagehelper為PageHelper類所在包名 --> <plugin interceptor="com.github.pagehelper.PageInterceptor"> <!-- 使用下面的方式配置引數,後面會有所有的引數介紹 --> <property name="reasonable" value="true"/> </plugin> </plugins>
在controller中編寫程式碼引用
@RequestMapping(value = "/emps") public String GetEmployees(@RequestParam(value = "pn",defaultValue ="1")Integer pn,Model model){ PageHelper.startPage(pn,8); List<Employee> employeeslist = employeeService.GetEmployees(); PageInfo page = new PageInfo(employeeslist,7); model.addAttribute("pageinfo",page); return "list"; }
PS:下面看下PageHelper的簡單使用(強大的分頁工具)
1.使用maven解決依賴
<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>3.4.2</version> </dependency>
2.在Controller呼叫Service的時候,呼叫PageHelper
@RequestMapping("/sysadmin/dept/list") public String toDeptList(Model model,@RequestParam(required = false,defaultValue = "1",value = "pn")Integer pn ) { PageHelper.startPage(pn,8); List<Dept> deptList = deptService.findAll(); PageInfo<Dept> p = new PageInfo<>(deptList); model.addAttribute("deptList",deptList); model.addAttribute("page",p); return "sysadmin/dept/jDeptList"; }
PageHelper.startPage(pn,8); //引數分別是設定當前的頁數和每頁的數量
PageInfo<Dept> p = new PageInfo<>(deptList); //將得到查詢結果集進行封裝
3.在jsp頁面進行簡單的分頁
<a href="/sysadmin/dept/list?pn=${page.firstPage}" rel="external nofollow" >首頁</a> <c:if test="${page.hasPreviousPage}"><a href="/sysadmin/dept/list?pn=${page.prePage}" rel="external nofollow" >上一頁</a></c:if> <c:if test="${!page.hasPreviousPage}">上一頁</c:if> <c:if test="${page.hasNextPage}"><a href="/sysadmin/dept/list?pn=${page.nextPage}" rel="external nofollow" >下一頁</a></c:if> <c:if test="${! page.hasNextPage}">下一頁</c:if> <a href="/sysadmin/dept/list?pn=${page.lastPage}" rel="external nofollow" >最後頁</a> <p>一共${page.pages}頁 --當前頁是${page.pageNum } -- 共有${page.total }條資料</p>
簡單的進行了呼叫,實現了基本的功能(使用pageInfo的相關屬性)
總結
到此這篇關於使用Mybatis的PageHelper分頁工具的教程詳解的文章就介紹到這了,更多相關Mybatis的PageHelper分頁工具內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!