码上敲享录 > mybatis的常见问题 > mybatis条件in的用法

mybatis条件in的用法

上一章章节目录下一章 2022-06-18已有943人阅读 评论(0)

mybatis条件in的用法


解决方法:

xml文件:

<if test="universalcodes != null and universalcodes.size()!=0">

           and b.universalcode  in

           <foreach item="item" index="index" collection="universalcodes" open="(" separator="," close=")">

               #{item,jdbcType=VARCHAR}

           </foreach>

       </if>


java代码:

Map<String, Object> paramMap = new HashMap<>();

paramMap.put("universalcodes",universalcodes);

其中universalcodes是List<String>


0

有建议,请留言!

  • *您的姓名:

  • *所在城市:

  • *您的联系电话:

    *您的QQ:

  • 咨询问题:

  • 提 交