Mybatis中,Integer类型参数值为0时得到 ""(空字符串)
Posted wulc-theworld
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis中,Integer类型参数值为0时得到 ""(空字符串)相关的知识,希望对你有一定的参考价值。
今日遇到的问题:
查询版本信息时,由于version是Integer类型,所以当前台选择版本为0时,变成了查询了所有的版本信息。
sql片段:
</if>
<if test="version != null and version != ‘‘ ">
AND a.version = #version
</if>
原因:
MyBatis因自身原因默认了 Integer类型数据值等于0时 为 ""(空字符串)
解决办法:
1. 某些情况下,可以在Controller处就拦截,并向前台提示,比如:“必须输入有效数字”,不让他再往后传。
2. 将判断条件version != ‘‘删去,不让它判断。
如:
</if>
<if test="version != null ">
AND a.version = #version
</if>
弊端:就是当有哪位仁兄真的用这个方法传了个空字符串,就无法判断。
3. 单独加上当version为0的特殊情况
如:
</if>
<if test="version != null and version != ‘‘ or version ==0 ">
AND a.version = #version
</if>
当然,如果想默认输入为0时查询所有(类似于上述问题示例)或者是后面想转为空字符串,
可以不用改,也算是巧用"bug"。
以上是关于Mybatis中,Integer类型参数值为0时得到 ""(空字符串)的主要内容,如果未能解决你的问题,请参考以下文章
摘录-Mybatis - Integer值为0的数据 return false
如何解决mybatis在xml中传入Integer整型参数为0时查询条件失效问题?亲测有效