mybatis使用Integer类型查询可能出现的问题

目录

  • 使用Integer类型查询出现的问题
    • 当state这个值为0的时候
  • mybatis判断Integer遇到的bug
    • 场景产出
    • 我是这样写的

使用Integer类型查询出现的问题 mapper.xml :
select count(m.id) from hr_push_msg_model as mm.text like '%${page.keyword}%'andm.text like '%${page.entity.text}%'andm.title like '%${page.entity.title}%'andm.state = #{page.entity.state}andm.type = #{page.entity.type}

比如:
andm.state = #{page.entity.state}


当state这个值为0的时候
mybatis为默认为空字符串"",所以如果状态这种类似的场景有0值得,查询就不要加上xxxx!=""这种。或者or xxx==0
代码示例:
1、
andm.state = #{page.entity.state}

【mybatis使用Integer类型查询可能出现的问题】2、
andm.state = #{page.entity.state}


mybatis判断Integer遇到的bug
场景产出
需要查出状态为0的所有用户

我是这样写的
1.mapper:
BaseUser selectUserByStatus(@parm("status") Integer status);

这里传了0进去
2.sql:
SELECT * FROM base_user WHERE status=0

3.xml片段
status = #{status},

4.结果真正执行的sql
SELECT * FROM base_user

小结一下:
test="status != null and status != ''"这个是拿来判断String的!!!也就是说Double,BigDecimal等数字类型也会出现这样的情况
1.如果是Integer类型的话,如果变量的值是0,即 num = 0, mybatis在进行 num != '' " 的时候会认为num 的值是空字符串;直接跳过判断了
所以如果是Integer类型只需要判断 != null 即可
2.如果String类型需要判断不等于0,则需要写name != '0'.toString(),否则会报错。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

    推荐阅读