亲宝软件园·资讯

展开

Mybatis怎样传入多个参数的实现代码

人气:0

第一种方式:使用@Param注解方式

此种方式用法是我们在接口中写方法的参数时,在每个参数的前面加上一个@Param注解即可。

该注解有一个value属性,我们可以给加上注解的参数取个名字,在SQL语句中我们可以通过这个名字获取参数值。

由于传入了多个参数,所以映射文件的入参ParameterType不用写。

假如我们在接口的方法如下:

//根据传入的用户名和主键id去修改用户名
int updateUserByManyParam(@Param("name")String username,@Param("id")Integer id);

我们先在映射文件里面瞎写看看控制台会报什么错误:

//错误实例:
<update id="updateUserByManyParam">
 update user set username = #{name1} where id = #{oid}
</update>

好了,看看控制台报了什么错:

//错误信息
Cause: org.apache.ibatis.binding.BindingException: Parameter 'name1' not found.
Available parameters are [name, id, param1, param2]

从错误信息我们可以看到,它说找不到name1参数,存在的参数有name, id, param1, param2,那么我们按照控制台说的来就可以了。

①按照指定的参数名

<update id="updateUserByManyParam">
 update user set username = #{name} where id = #{id}
</update>

②按照参数的顺序

<update id="updateUserByManyParam">
  update user set username = #{param1} where id = #{param2}
</update>

第二种方式:按照参数的编写顺序

此种方式我们在传入参数的时候什么都不用做就行了,只要在SQL语句中按照规则获取参数值即可。

假如我们在接口的方法如下:

//根据传入的用户名和主键id去修改用户名
int updateUserByManyParam(@Param("name")String username,@Param("id")Integer id);

我们和上面一样,先在映射文件里面瞎写看看控制台会报什么错误:

//错误实例:
<update id="updateUserByManyParam">
 update user set username = #{ddd} where id = #{fff}
</update>

好了,看看控制台报了什么错:

//错误信息:
Cause: org.apache.ibatis.binding.BindingException: Parameter 'ddd' not found. 
Available parameters are [arg1, arg0, param1, param2]
 

从错误信息我们可以看到,它说找不到ddd参数,存在的参数有arg1, arg0, param1, param2,那么我们按照控制台说的来就可以了。

①按照参数的顺序

<update id="updateUserByManyParam">
  update user set username = #{arg0} where id = #{arg1}
</update>
 

②按照参数的顺序

<update id="updateUserByManyParam">
  update user set username = #{param1} where id = #{param2}
</update>

总结

注意:param后面的数字是从1开始的,而arg后面的数字是从0开始的。

您可能感兴趣的文章:

加载全部内容

相关教程
猜你喜欢
用户评论