美文网首页
Mybatis 参数List查询

Mybatis 参数List查询

作者: Jin110 | 来源:发表于2019-03-14 18:28 被阅读0次

    1)java代码

    Map<String, Object> param = new HashMap<>();
    List<Integer> idList = new ArrayList<>();
    param.put("arr", idList);
    

    2)mybatix.xml

    SELECT * FROM table
    WHERE 1 = 1
    <if test="arr != null">
        AND id IN
        <foreach item="item" index="index" collection="arr" open="("  close=")" separator=",">  
                    #{item}   
        </foreach>  
    </if>
    

    相关文章

      网友评论

          本文标题:Mybatis 参数List查询

          本文链接:https://www.haomeiwen.com/subject/nxwcmqtx.html