java中mybatis的分页要借助map的原理,在下文中会展开详细的叙述。同时也可以了解LIMIT关键字的分页方法。
1.map集合
我们的分页是需要多个参数的,并不是只有一个参数。当需要接收多个参数的时候,我们使用Map集合来装载。
publicList<Student>pagination(intstart,intend)throwsException{ //得到连接对象 SqlSessionsqlSession=MybatisUtil.getSqlSession(); try{ //映射文件的命名空间.SQL片段的ID,就可以调用对应的映射文件中的SQL /** *由于我们的参数超过了两个,而方法中只有一个Object参数收集 *因此我们使用Map集合来装载我们的参数 */ Map<String,Object>map=newHashMap(); map.put("start",start); map.put("end",end); returnsqlSession.selectList("StudentID.pagination",map); }catch(Exceptione){ e.printStackTrace(); sqlSession.rollback(); throwe; }finally{ MybatisUtil.closeSqlSession(); } } publicstaticvoidmain(String[]args)throwsException{ StudentDaostudentDao=newStudentDao(); List<Student>students=studentDao.pagination(0,3); for(Studentstudent:students){ System.out.println(student.getId()); } }
2.LIMIT关键字
(1)mapper代码:利用limit关键字实现分页
<selectid="selectByPageInfo"resultMap="BaseResult"> select*fromtb_userlimit#{pageNo},#{pageSize} </select>
(2)业务层直接调用
publicList<User>findByPageInfo(PageInfoinfo){ returnuserMapper.selectByPageInfo(info); }
(3)控制层直接调用
我们都知道mybatis框架,对于数据方面的应用更为出色。就数据的找寻方面,我们有时会涉及到分页搜索的操作,相信这点也是很多人迫切需要学习的知识点。
以上就是mybatis在java中分页查询的方法,因为参数的不固定,所以我们要借助map进行处理。对于另一种关键字的分页方法,大家也可以做一个知识的了解。更多基础知识指路:头条
原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容