mybatis test把整数0等同于空字符串

2022-03-28 14:41:48 浏览数 (1)

今天在使用mybatis时遇到一个问题,java代码中传递的整数0在mybatis中被识别成null

代码语言:javascript复制
   <where>
   	<if test="status != null and status !=''">
   		and status=#{status,jdbcType=INTEGER}
   	</if>
   </where>

如果java代码需要往mybatis传递整数0,那么需要使用增强版的判断,具体如下所示:

代码语言:javascript复制
   <where>
   	<if test="status != null and status !='' or status=='0'.toString()">
   		and status=#{status,jdbcType=INTEGER}
   	</if>
   </where>

或者可以采用

代码语言:javascript复制
   <where>
   	<if test="@org.apache.commons.lang3.StringUtils@isNotEmpty(status)">
   		and status=#{status,jdbcType=INTEGER}
   	</if>
   </where>

第二种方式是采用了自定义的判断逻辑,第一种方式则是采用ognl的判断逻辑!!!

具体原因可以参考:https://blog.csdn.net/john1337/article/details/98225453

0 人点赞