关于java:mybatis判断list为空或null在xml文件中

22次阅读

共计 241 个字符,预计需要花费 1 分钟才能阅读完成。

mybatis 判断汇合为空或者元素个数为零,mybatis 判断 list 为空或 null,在 xml 文件中,长久层写法:

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

双软认证高企软件认证著作权 恒标

正文完
 0