当前位置:主页 > 软件编程 > JAVA代码 >

mybatis的if判断integer问题

时间:2022-11-15 09:47:54 | 栏目:JAVA代码 | 点击:

if判断integer的问题

昨天在使用mybatis的if判断integer时遇见一个小问题:

<if test="isChoose != null and isChoose != '' and isChoose == 0">
    
</if>

我发现前段同事调用接口的时候传参总是无法进入条件,

原来mybatis的if将0认为是'',所以这样判断是无法进入条件的,将数字换为1,2之类的就可以了;

if判断integer类型注意点

今天在写mapper文件时遇到integer类型参数时判断不为空,如下

<if test="status != null and status != ''">
    SQL。。。
</if>

当status=0时,if语句没有执行。

究其原因,原来mybatis默认将integer=0的参数等于‘’空串。 

您可能感兴趣的文章:

相关文章