您好,登錄后才能下訂單哦!
這篇文章主要介紹了Java中怎么使用Mybatis實現分頁查詢的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Java中怎么使用Mybatis實現分頁查詢文章都會有所收獲,下面我們一起來看看吧。
1.map集合
我們的分頁是需要多個參數的,并不是只有一個參數。當需要接收多個參數的時候,我們使用Map集合來裝載。
public List<Student> pagination(int start ,int end) throws Exception { //得到連接對象 SqlSession sqlSession = MybatisUtil.getSqlSession(); try{ //映射文件的命名空間.SQL片段的ID,就可以調用對應的映射文件中的SQL /** * 由于我們的參數超過了兩個,而方法中只有一個Object參數收集 * 因此我們使用Map集合來裝載我們的參數 */ Map<String, Object> map = new HashMap(); map.put("start", start); map.put("end", end); return sqlSession.selectList("StudentID.pagination", map); }catch(Exception e){ e.printStackTrace(); sqlSession.rollback(); throw e; }finally{ MybatisUtil.closeSqlSession(); } } public static void main(String[] args) throws Exception { StudentDao studentDao = new StudentDao(); List<Student> students = studentDao.pagination(0, 3); for (Student student : students) { System.out.println(student.getId()); } }
2.LIMIT關鍵字
(1)mapper代碼:利用limit關鍵字實現分頁
<select id="selectByPageInfo" resultMap="BaseResult"> select * from tb_user limit #{pageNo}, #{pageSize} </select>
(2)業務層直接調用
public List<User> findByPageInfo(PageInfo info) { return userMapper.selectByPageInfo(info); }
(3)控制層直接調用
我們都知道mybatis框架,對于數據方面的應用更為出色。就數據的找尋方面,我們有時會涉及到分頁搜索的操作,相信這點也是很多人迫切需要學習的知識點。
關于“Java中怎么使用Mybatis實現分頁查詢”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Java中怎么使用Mybatis實現分頁查詢”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。