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>
原文地址:https://www.cnblogs.com/zsg88/p/7998097.html