传入用逗号分隔的字符串:
StringBuilder sb = new StringBuilder();
for(int i=0;i<list_userid.size();i++){
if (sb.length() > 0) {//该步即不会第一位有逗号,也防止最后一位拼接逗号!
sb.append(",");
}
sb.append(list_userid.get(i).getUserId());
}
//将拼接好的字符串输出查看
System.out.println(sb.toString());
然后传到映射文件中,(注意,拼接后的字符串长度可能很大,小心数据库报长度的错误。如果真的遇到这个错,然后字符串又必须拼接,那么当然就只能去改表字段的大小了。。(ps:我没有遇到这个错))
<if test="userId != null and userId != ''">
AND user_id IN
<foreach item="item" collection="userId.split(',')" open="(" separator="," close=")">
#{item}
</foreach>
</if>
亲试有效,哈哈哈。