1. 参数为数字类型
1.1 无特殊需求时只需判断是否为null即可
例如:
<if test="id != null"> </if>
1.2 需判断大小关系 情况:
对应关系:
Column 1 | Column 2 | Column 3 | Note |
---|---|---|---|
gt | 对应 | > | |
gte | 对应 | >= | |
lt | 对应 | < | 会报错 相关联的 “test” 属性值不能包含 ‘<’ 字符 |
lte | 对应 | <= | 会报错 相关联的 “test” 属性值不能包含 ‘<’ 字符 |
如果有特殊需求,例如判断是否大于某个数的时候才行。只需要加上对应的条件判断即可
例如:
<if test='id != null and id > 28'></if> 或<if test='id != null and id gt 28'></if>
2. 字符串类型
Note:
- null:空,不占用内存空间,没有任何属性,也不能读取属性,即没有.length 等;(若为null,则不指向任何对象)
- .length,此刻是一个字符串,已经为其分配了一定的内存空间。(若为0,则引用指向的对象为空字符串,即字符串长度为0)
2.1 不需要过滤空串的情况:判断是否为null即可
例如:
<if test="username != null"></if>
2.2 需要过滤空串情况:再添加空串判断
Note:
- 用 and or || 做逻辑与或的判断
例如:
<if test="username != null and '' != username"></if> 或<if test="username != null and ''neq username"></if>
2.3 判断字符串是否已某个特俗字符开头,结尾等情况:调用String的对应方法
- 是否以…为开头:
str.indexOf('...')==0
<if test="username != null and username.indexOf('...') == 0"> </if>
- 是否包含某字符:
str.indexOf('...')>=0
<if test="username != null and username.indexOf('ji') >= 0"> </if>
- 是否以…结尾:
str.lastIndexOf(('...')>0
<if test="username != null and username.lastIndexOf('ji') > 0"></if>
2.4 是否是某个特定字符串,某些业务有此需要
例如:
<if test="username != null and 'hello' == username"></if> 或<if test="username != null and 'hello' eq username"></if>
注意:
这种形式的写法在参数类型是字符串的时候是没有问题的,
但是参数类型为非字符串类型的时候就需要写成
仅仅写成也会有很大可能会挂。
也许你会说非字符串的为什么要写成这样。这就要看特俗需要了。
例如:某一个sql片段是公用的,
<if test="username != null"></if> <if test="password != null"></if>
该片段更新条件也用,但是当你需要将某一个字段更新成null的时候怎么办。
这个时候就可以通过传入一个特定的字符串来弄。当传入的字符串为特定字符串的时候就更新该字符串为null。
xxx=null
当然这样子貌似date型会挂。
对应关系:
Column 1 | Column 2 | Column 3 |
---|---|---|
eq | 对应 | == |
neq | 对应 | != |
当然还可以看出来if的条件判断test是支持对象自身方法调用的,即使是自己写的方法,可以自己尝试。当然下面会有例子。 |
例如:里面可以用‘xxxx’.equals(xxxx)
字符串的比较两个字符串方法
xxxx.indexOf('ss')
判断字符串里面是否包含某个字符等等
3. 判断list是否为空:调用.size()>0或者.isEmpty()
例如:
<if test="userList != null and userList.isEmpty()"></if> 或<if test="userList != null and userList.size()>0"></if>