MyBatis报OgnlException: source is null for getProperty(null, "id")异常

本文介绍了一个常见的MyBatis异常——OgnlException:sourceisnullforgetProperty(null,“id”)的问题及解决方法。通过调整XML映射文件中的条件判断逻辑,可以在请求参数为null时避免出现空指针异常。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

MyBatis报OgnlException: source is null for getProperty(null, “id”)异常

  • 代码如下

    <sql id="where">

            <if test="requestStudent.id!=null and requestStudent.id!=''">
                and tb.id = #{requestStudent.id}
            </if>

            <if test="requestStudent.name!=null and requestStudent.name!=''">
                and tb.name = #{requestStudent.name}
            </if>
            <if test="requestStudent.age!=null and requestStudent.age!=''">
                and tb.age = #{requestStudent.age}
            </if>
            <if test="requestStudent.height!=null and requestStudent.height!=''">
                and tb.height = #{requestStudent.height}
            </if>
    </sql>
  • 原因:

    • 以前的MyBatis可以像上面那样直接”“判断是否为null,现在不行了,要先判断requestStudent是否为null才行,否则即使requestStudent不为null也会报source is null for getProperty(null, “id”)异常,即可能会有NPE空指针异常。
  • 解决办法:在外层加一个if判断就行了

    <sql id="where">
        <if test="requestStudent!=null">
            <if test="requestStudent.id!=null and requestStudent.id!=''">
                and tb.id = #{requestStudent.id}
            </if>

            <if test="requestStudent.name!=null and requestStudent.name!=''">
                and tb.name = #{requestStudent.name}
            </if>
            <if test="requestStudent.age!=null and requestStudent.age!=''">
                and tb.age = #{requestStudent.age}
            </if>
            <if test="requestStudent.height!=null and requestStudent.height!=''">
                and tb.height = #{requestStudent.height}
            </if>
        </if>
    </sql>
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值