mybatis传集合参数 注意事项
程序员文章站
2024-02-04 20:10:34
...
<if test="serverIds!=null">
and serverId in
<foreach item="item" index="index" collection="serverIds" open="(" separator="," close=")">
#{item}
</foreach>
</if>
这里面serverIds是一个集合 传参是时候 if中test不能跟“” 或者其他字符串 比较