mybatis if标签判断是否等于某个字符串报错

参考资料地址1: MyBatis动态标签的使用

1 原文

<if test="queryParams.bindDevice != null and queryParams.bindDevice != '' ">
            <if test="queryParams.bindDevice == 'Y' ">
                and ca.CUSTOMER_NO is not null
            </if>
            <if test="queryParams.bindDevice == 'N' ">
                and ca.CUSTOMER_NO is null
            </if>
        </if>

2 异常信息

Error querying database.  Cause: java.lang.NumberFormatException: For input string: "Y"
 Cause: java.lang.NumberFormatException: For input string: "Y"

3 临时解决方案

先传数字,改为

<if test="queryParams.bindDevice != null and queryParams.bindDevice != '' ">
            <if test="queryParams.bindDevice == 1 ">
                and ca.CUSTOMER_NO is not null
            </if>
            <if test="queryParams.bindDevice == 0 ">
                and ca.CUSTOMER_NO is null
            </if>
        </if>

4 真正的原因

注意''单引号中如果只有一个字符,会报错。因为像'Y'这种单个字符的情况会被判定为字符,而MyBatis认为字符串在与字符做比较,从而报错。但是如果是'YY'或者'Y'.toString() 这种,就会被判定为字符串,就正常。

5 解决方案

正确的写法1

    <if test="level == 'secondary' ">
        AND e_times>10
    </if>

正确的写法2

    <if test="level == 'secondary'.toString()">
        AND e_times>10
    </if>

6 补充

if标签判断是与数字相等,空字符串与0相等的坑

Map<String,Object>传参,如果electricityRange传的空字符串以下条件会成立,传null则不会

 <if test="queryParams.electricityRange ==0 ">
                    and pb.ELECTRICITY  <![CDATA[ < ]]> 3
                </if>
posted @ 2024-08-01 16:08  进击的小蔡鸟  阅读(278)  评论(0编辑  收藏  举报