MyBatis OGNL 表达式陷阱:Integer类型字段使用“xxx!= ‘‘”时判断失效

问题原因

userTypeInteger 类型且值为 0 时,表达式 query.userType != '' 会判断失败。

根本原因

在 OGNL 表达式中,数字 0 会被当作 false 处理:

java 复制代码
<if test="query.userType != null and query.userType != ''">

userType = 0 时:

  • query.userType != nulltrue(0 不是 null)
  • query.userType != ''false(0 在 OGNL 中被当作 false)

因此整个表达式返回 false,导致 user_type = #{query.userType} 不会被添加到 SQL 中。

代码证据

从 [UserQuery.java]可以看到:

java 复制代码
@ApiModelProperty("用户类型(0:普通用户 1-管理员)")
private Integer userType;  // 注意:类型是 Integer

解决方案

方案一(推荐):只判断 null

xml 复制代码
<if test="query.userType != null">
    and user_type = #{query.userType}
</if>

方案二:使用 equals 方法

xml 复制代码
<if test="query.userType != null and query.userType != 0">
    and user_type = #{query.userType}
</if>

方案三:避免与空字符串比较数字类型

对于 IntegerLongDouble 等数值类型,不应该 与空字符串 '' 比较,因为这是类型不匹配的比较,容易触发 OGNL 的隐式类型转换问题。

最佳实践

字段类型 推荐判断条件
String query.field != null and query.field != ''
Integer/Long query.field != null
Date query.field != null
相关推荐
方安乐2 小时前
python之向量、向量和、向量点积
开发语言·python·numpy
代码AI弗森3 小时前
一文理清楚“算力申请 / 成本测算 / 并发评估”
java·服务器·数据库
Old Uncle Tom3 小时前
OpenClaw 记忆系统 -- 记忆预加载
java·数据结构·算法·agent
小小小米粒4 小时前
Collection单列集合、Map(Key - Value)双列集合,多继承实现。
java·开发语言·windows
摇滚侠4 小时前
expdp 查看帮助
java·数据库·oracle
czhc11400756634 小时前
C# 428 线程、异步
开发语言·c#
:1215 小时前
java基础
java·开发语言
SilentSamsara5 小时前
Python 环境搭建完整指南:从下载安装到运行第一个程序
开发语言·python
曹牧5 小时前
Spring:@RequestMapping注解,匹配的顺序与上下文无关
java·后端·spring
daixin88485 小时前
cursor无法正常使用gpt5.5等模型解决方案
java·redis·cursor