mybatis多参数传递(包括数组)
Posted 迷途_小羔羊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis多参数传递(包括数组)相关的知识,希望对你有一定的参考价值。
mapper接口的方法:
public void batchDelete(@Param(value = "activityId") Integer activityId, @Param(value = "userIds") Integer[] userIds);
mapper.xml的配置:
<insert id="batchDelete"> delete from T_ACT_USERS where ACTIVITY_ID = #{activityId} and USER_ID in <foreach collection="userIds" item="item" index="index" open="(" separator="," close=")"> #{item} </foreach> </insert>
以上是关于mybatis多参数传递(包括数组)的主要内容,如果未能解决你的问题,请参考以下文章