org.mybatis.spring.MyBatisSystemException:nested exception is org.apache.ibatis.binding.BindingException: Parameter 'xxx' not found. Available parameters are [arg1, arg0, param1, param2]
这个问题是因为我们在Mapper接口中声明方法的时候有多个参数,例如:
Mapper接口中方法:
int selectUser(String pid,String pname);
然后在mapper.xml配置如下:
<select id="selectUser" resultType="xxx.xxx.xxx.model.User">
select *
from user
where id = #{pid} and name = #{pname}
</select>
这样直接用pid,pname就会报错的。
这里使用@Param注解,这种方式Mybatis就会自动将参数封装成Map类型,@Param注解的值会作为Map中的key,例如:
Mapper接口中:
int selectUser(@Param("pid")String pid,@Param("pn")String pname);
mapper.xml中:
<select id="selectUser" resultType="xxx.xxx.xxx.model.User">
select *
from user
where id = #{pid} and name = #{pn}
</select>
这里注意一下:
@Param(“pn”) String pname,@Param里面的定义的名称(即pn)可以和参数名(即pname)不一致。在xml中的SQL 语句是以“pn”作为key的。也就是说在使用时是 name = #{pn},而不是 name = #{pname}了。