Mybatis中判断集合的 size 不为空

2020-04-30 16:37:40 浏览数 (1)

Mybatis中判断集合的size, 可以用下面的方法来做。

代码语言:javascript复制
<if test="null != staffCodeList and staffCodeList.size > 0">
and gui.USER_CODE not in
    <foreach collection="staffCodeList" item="staffCode" open="(" separator=","  close=")">
    #{staffCode}
    </foreach>
</if>

0 人点赞