美文网首页
mybatis判断list为空或null,在xml文件中。

mybatis判断list为空或null,在xml文件中。

作者: 恒标双软高企软件著作权 | 来源:发表于2022-07-26 15:29 被阅读0次

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


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

    相关文章

      网友评论

          本文标题:mybatis判断list为空或null,在xml文件中。

          本文链接:https://www.haomeiwen.com/subject/rymoirtx.html