Mybatis xml 写sql如何判断集合的size

在mybtis的映射文件中判断集合大小  list.size  例子如下:

      <if test="groupIds != null and groupIds.size>0">
        and (group_id in<foreach collection="groupIds" index="index" item="item" open="(" separator=","
                                close=")">#{item}</foreach>)
      </if>

 

posted @ 2017-12-07 11:02  猪脚踏浪  阅读(8795)  评论(0编辑  收藏  举报