MyBatis中對於字串blank(null、empty)的判定方法

weixin_34391854發表於2017-06-21
直接上程式碼,關鍵需要進行2個判定,一個是null判定,一個是 ‘’ 判定。
<where>
    <if test="url!= null and url!=''">
    url LIKE #{url}
    </if>
</where>

 

相關文章