文章目录
指定参数位置
如果入参是多个,可以通过指定参数位置进行传参. 参数是实体包含不住的条件.
实体类只能封装住成员变量的条件.如果某个成员变量要有区间范围内的判断,或者有两个值进行处理,则实体类包不住.
例如:查询指定日期范围内的用户信息.我们这里插入是按照默认顺序插入
<!-- //查询指定日期范围内的用户 List<Users> getByBirthday(Date begin, Date end); --> <select id="getByBirthday" resultType="users"> select <include refid="allColumns"></include> from users where birthday between #{arg0} and #{arg1} </select>
测试结果:
入参是map(推荐使用
)
如果入参超过一个以上,使用map封装查询条件,更有语义,查询条件更明确.(推荐使用)
通过下面案例会发现更加明确和简洁。
<!-- //入参是map List<Users> getByMap(Map map); #{birthdayBegin}:就是map中的key --> <select id="getByMap" resultType="users" > select <include refid="allColumns"></include> from users where birthday between #{birthdayBegin} and #{birthdayEnd} </select> 测试类中 @Test public void testGetByMap() throws ParseException { Date begin = sf.parse("1999-01-01"); Date end = sf.parse("1999-12-31"); Map map = new HashMap<>(); map.put("birthdayBegin",begin); map.put("birthdayEnd", end); List<Users> list = uMapper.getByMap(map); list.forEach(users -> System.out.println(users)); }
返回值是map
如果返回的数据实体类无法包含,可以使用map返回多张表中的若干数据.返回后这些数据之间没有任何关系.就是Object类型.返回的map的key就是列名或别名.
<!-- //返回值是map(一行) Map getReturnMap(Integer id); --> <select id="getReturnMap" parameterType="int" resultType="map"> select username nam,address a from users where id=#{id} </select> <!-- //返回多行的map List<Map> getMulMap(); --> <select id="getMulMap" resultType="map"> select username,address from users </select>
测试类中的代码
@Test public void testGetReturnMap(){ Map map = userMapper.getReturnMap(1); System.out.println(map.get("username")); System.out.println(map.get("address")); } @Test public void testReturnMuchMap(){ List<Map> list = userMapper.getMuchMap(); list.forEach(map -> System.out.println(map)); } }
可以 明显看到我们取出的时候更加明确得到的是什么
✨结语
入参的时候更建议用map形式,取出的时候也更加方便和明确。
下节将复习表之间的关联关系