码迷,mamicode.com
首页 > 其他好文 > 详细

Mybatis--->limit分页查询

时间:2020-07-05 17:42:32      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:bsp   对比   com   on()   select   文件   nbsp   sele   pre   

分页查询对比正常的查询差别不大,只是在sql语句上有区别

userMapper.class文件

//limit分页
List<User> limit(Map<String,Integer> map);

User mapper.xml 文件下映射对应文件

<select id="limit" parameterType="map" resultType="com.xian.pojo.User">
        select * from testdb.test001 limit #{index},#{end}
    </select>

test.class

@Test
    public void limit(){
        SqlSession sqlsession = MybatisUtils.getSqlsession();
        UserMapper mapper = sqlsession.getMapper(UserMapper.class);
        Map<String, Integer> map = new HashMap<String, Integer>();
        map.put("index",1);
        map.put("end",3);
        List<User> limit = mapper.limit(map);
        for (User user : limit) {
            System.out.println(user);
        }
        sqlsession.close();
    }

 

Mybatis--->limit分页查询

标签:bsp   对比   com   on()   select   文件   nbsp   sele   pre   

原文地址:https://www.cnblogs.com/springxian/p/13246507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!