例如,数据库的有一个字段名为pwd,而实体类的有一属性名为passWord,其他都与数据库字段名一样。
方式一为列名指定别名 , 别名和java实体类的属性名一致
方式二select id , name , pwd as password from user where id = #{id}
使用结果集映射->ResultMap 【推荐】
分页 *** 作 使用Limit实现分页
- Mapper接口,参数为map
//选择全部用户实现分页 ListselectUser(Map map);
- Mapper.xml
- 测试
int currentPage = 1; //第几页 int pageSize = 2; //每页显示几个 Mapmap = new HashMap (); //起始位置 = (当前页面 - 1 ) * 页面大小 map.put("startIndex",(currentPage-1)*pageSize); map.put("pageSize",pageSize); List users = mapper.selectUser(map);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)