在 MyBatis 中,可以使用以下方法来判断一个 List 是否为空:
<if test="list != null and list.size() > 0">
SELECT * FROM table WHERE id IN
<foreach collection="list" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<choose>
<when test="list != null and list.size() > 0">
SELECT * FROM table WHERE id IN
<foreach collection="list" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</when>
<otherwise>
SELECT * FROM table
</otherwise>
</choose>
这样可以根据 List 是否为空来动态生成相应的 SQL 语句。如果 List 为空,则不会执行相应的 SQL 语句。