mybatis底层将传进来的参数封装成map集合,每个集合中会有对应的参数值argx,因此假如不使用注解,会出现下面的错误,提醒找不到该参数
### Error querying database. Cause: org.apache.ibatis.binding.BindingException: Parameter 'mgr' not found. Available parameters are [arg1, arg0, param1, param2]
sql映射文件中的值需要直接从map集合中取出arg参数:
<select id="selectByCond" resultMap="empResultMap">
select * from emp where mgr=#{arg0}
</select>
或者
<select id="selectByCond" resultMap="empResultMap">
select * from emp where mgr=#{param1}
</select>
使用@Param是用于替换mybatis中的arg某
键名会方便很多。
当传进去的参数为collection
mybatis中的map:
map.put("collection",传入的集合参数);
map.put("arg0",传入的集合参数);
当传进去的参数为list
mybatis中的map:
map.put("collection",传入的list参数);
map.put("list",传入的list参数);
map.put("arg0",传入的list参数);
当传进去的参数为数组
mybatis中的map:
map.put("array",传入的数组参数);
map.put("arg0",传入的数组参数);
其他类型:
map.put("arg0",参数值1);
map.put("param1",参数值1);
map.put("arg1",参数值2);
map.put("param2",参数值2);
标签:map,arg0,list,put,参数,mybatis,底层
From: https://www.cnblogs.com/Liku-java/p/17038812.html