Bootstrap

MyBatis中if标签判断参数是否为null

在MyBatis的mapper文件中,查询语句常使用if标签,通过传入的不为null的参数来进行条件查询,有些情况下需要对传入参数为null或空字符串时执行部分逻辑,如默认查询参数、默认排序等。
以下提供在if条件中判断参数为空的方法。

<select id="findUserList" parameterType="map" resultMap="BaseResultMap">
    SELECT * FROM user WHERE 1=1
    
    <if test="userType != null and userType != ''">
        AND user_type = #{userType}
    </if>
    <if test="userType == null or userType == ''">
        -- 如果 userType 为 null,则可以在这里添加一些默认的逻辑
        AND user_type = 'DEFAULT'
    </if>
    
    <if test="orderByClause != null and orderByClause != ''">
        order by #{orderByClause}
    </if>
    <if test="orderByClause == null or orderByClause == ''">
        -- 如果排序参数为null,默认按更新时间倒序排序
        order by update_time desc
    </if>
</select>
;