Mybatis Limit實(shí)現(xiàn)分頁功能
1.1 為什么需要分頁 減少數(shù)據(jù)的處理量
1.2 使用Limit實(shí)現(xiàn)分頁
select * from user limit startIndex,pageSize; # 注意是從startIndex+1開始查詢 pageSize 個(gè)select * from user limit 3; # [0,3]
1.3 使用mybatis實(shí)現(xiàn)分頁(核心:SQL)
1.3.1 接口
UserMapper.java
// limit實(shí)現(xiàn)分頁 Map后面只能是 Integer 包裝類 不可以 int List<User> getUserByLimit(Map<String, Integer> map);
1.3.2 UserMapper.xml
<select resultMap='com.tian.pojo.User' parameterType='map'>select *from mybatis.userlimit #{statrIndex},#{pageSize}; </select>
1.3.3 測(cè)試類
UserMapperTest.java
<select resultMap='UserMap' parameterType='map'>select *from `mybatis`.`user`limit #{startIndex},#{pageSize}; </select> <select resultMap='UserMap'>select *from `mybatis`.`user`where id = #{id}; </select>
執(zhí)行結(jié)果:

到此這篇關(guān)于Mybatis Limit實(shí)現(xiàn)分頁功能的文章就介紹到這了,更多相關(guān)Mybatis Limit分頁內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. 如何將mysql表的內(nèi)容追加導(dǎo)入另一張表2. MySql導(dǎo)出后再導(dǎo)入數(shù)據(jù)時(shí)出錯(cuò)問題3. mysql數(shù)據(jù)庫中最常用的時(shí)間轉(zhuǎn)換函數(shù)的用法4. 如何實(shí)現(xiàn)MySQL數(shù)據(jù)庫的備份與恢復(fù)5. Mysql事務(wù)特性和級(jí)別原理解析6. MySQL刪除數(shù)據(jù)庫表的操作方法8. SQL Server中使用DTS設(shè)計(jì)器進(jìn)行數(shù)據(jù)轉(zhuǎn)移9. Windwos下MySQL 64位壓縮包的安裝方法學(xué)習(xí)記錄10. Access數(shù)據(jù)庫提示OleDbException (0x80004005): 操作必須使用一個(gè)可更新的查詢

網(wǎng)公網(wǎng)安備