mybatis多参数dao层方法和XML文件写法
java哥
阅读:950
2021-04-01 11:14:35
评论:0
1.常规写法@param注解
int updatePwdById(@Param("userId")Integer userId, @Param("password")String password);
xml文件
<update id="updatePwdById">
UPDATE sys_user
SET password = #{password}
WHERE user_id = #{userId}
</update>
2.不加注解,xml通过索引获取参数
int updatePwdById(Integer userId, String password);
xml文件
<update id="updatePwdById">
UPDATE sys_user
SET password = #{arg1}
WHERE user_id = #{arg0}
</update>
或者
<update id="updatePwdById">
UPDATE sys_user
SET password = #{param2}
WHERE user_id = #{param1}
</update>
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。