Mybatis的分頁插件PageHelper分頁失效的原因
阿新 • • 發佈:2019-02-14
ble tis sta 失效 plugins type clas 好的 例如
引用博客:個人博客地址:https://alexaccele.github.io/
PageHelper是Mybatis的一個很好的分頁插件,但要使用它的分頁功能需要註意一下幾點
1.導入相關包,例如maven導入依賴
1 <dependency> 2 <groupId>com.github.pagehelper</groupId> 3 <artifactId>pagehelper</artifactId> 4 <version>5.1.4</version> 5 </dependency>
2.在mybatis-config.xml中添加插件
1 <plugins> 2 <plugin interceptor="com.github.pagehelper.PageInterceptor"> 3 <!--分頁參數合理化 --> 4 <property name="reasonable" value="true"/> 5 </plugin> 6 </plugins>
3.在Controller的方法中
PageHelper.startPage(1,5);//從第一頁開始,每頁5條記錄
以上代碼後面需緊跟查詢語句
1 List<Test> tests = testService.getAllTestsByTypeId(testTypeid); 2 PageInfo pageInfo = new PageInfo(tests,5);
當一個方法中有多個查詢語句時,只有緊跟在PageHelper.starPage()方法後的查詢結果才會分頁。
缺少以上三步都會導致分頁失效
Mybatis的分頁插件PageHelper分頁失效的原因