当绑定变量为空时,如何在MyBatis中处理Like运算符

时间:2016-11-22 07:02:41

标签: mybatis ibatis spring-mybatis

当bind变量为NULL时,以下代码出现问题:

<bind name="recipientName" value="'%'+recipientName+'%'"/>

当绑定变量为null时,如何处理MyBatis中的Like运算符?

1 个答案:

答案 0 :(得分:0)

    <if test = "recipientName != null">
       <bind name="recipientName" value="'%'+recipientName+'%'"/>
    </if> resolved the issue.