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

先看下面的mapper中的写法


    <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报OgnlException: source is null for getProperty(null, “id”)异常的原因如下:

以前的MyBatis可以像上面那样直接”requestStudent.id“判断是否为null,现在不行了,要先判断requestStudent是否为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>

 

 

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值