mybatis中分页查询
Posted pclover11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中分页查询相关的知识,希望对你有一定的参考价值。
1 如果在查询方法中有多个参数,可以使用map对象将所有数据都存储进去。比如分页查询,需要用到两个参数,可以将这两个参数包装到map中。
例子:分页查询
dao层方法
public List<Student> getStudentPage(int pstart, int pnumber) throws Exception{ SqlSession sqlSession = MybatisUtil.getSqlSession(); Map<String,Integer> map = new HashMap<String, Integer>(); map.put("pstart", pstart); map.put("pnumber", pnumber); try{ return sqlSession.selectList(Student.class.getName() + ".getStudentPage", map); }catch(Exception e){ e.printStackTrace(); throw new RuntimeException(e); }finally{ MybatisUtil.closeSqlSession(); } }
映射文件studentmapper.xml
<select id="getStudentPage" parameterType="map" resultMap="studentMap"> select id,sname,salary from student limit #{pstart},#{pnumber} </select>
以上是关于mybatis中分页查询的主要内容,如果未能解决你的问题,请参考以下文章
TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段