在 MyBatis 中,可以使用 <if>
标签来处理空值参数。在 SQL 语句中,可以使用条件判断来判断参数是否为空,然后进行相应的处理。例如:
<select id="getUserList" resultType="User">
SELECT * FROM user
<where>
<if test="username != null and username != ''">
AND username = #{username}
</if>
<if test="email != null and email != ''">
AND email = #{email}
</if>
</where>
</select>
在上面的例子中,使用了 <if>
标签来判断 username
和 email
参数是否为空,如果不为空则将条件拼接到 SQL 语句中。这样可以动态地根据参数来构建不同的 SQL 查询语句。