mybatis判断集合为空的方法是什么

avatar
作者
猴君
阅读量:0

在MyBatis中,可以使用OGNL表达式语言中的isEmpty()函数来判断集合是否为空。

例如,在MyBatis的select语句中可以这样判断集合是否为空:

<select id="selectUsers" resultMap="userResultMap">     SELECT * FROM users     <where>         <if test="userIds != null and !userIds.isEmpty()">             AND user_id IN             <foreach collection="userIds" item="userId" open="(" close=")" separator=",">                 #{userId}             </foreach>         </if>     </where> </select> 

在上面的例子中,userIds是一个List类型的参数,我们通过isEmpty()函数判断是否为空,如果不为空则执行相应的SQL语句。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!