mybatis映射异常
Posted 花生福
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis映射异常相关的知识,希望对你有一定的参考价值。
今天写项目突然遇到了这么个问题:
nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named \'relationId\' in \'class java.lang.Long\'
当时很不理解,
实体类的一个属性,说在Long类里面没有get方法
后来在网上找到一个靠谱的解释
我们都知道mybatis在进行参数判断的时候,直接可以用 就可以了,如下:
1、常规代码
1 <update id="update" parametertype="com.cq2022.zago.order.entity.Test"> 2 update t_test_l 3 <set> 4 <if test="trnsctWayId != null"> 5 trnsct_way_id = #{trnsctWayId,jdbcType=TINYINT}, 6 </if> 7 <if test="langId != null"> 8 lang_id = #{langId,jdbcType=INTEGER}, 9 </if> 10 </set> 11 where trnsct_way_l_id = #{trnsctWayLId,jdbcType=INTEGER} 12 </update>
但是单个参数和多参数的判断有个不同点,当我们的入参为entity实体,或者map的时候,使用if 参数判断没任何问题。
但是当我们的入参为java.lang.Integer 或者 java.lang.String的时候,这时候就需要注意一些事情了
具体代码如下(咱们看着代码说,先展示错误代码):
<select id="getTrnsctListByLangId" parameterType="java.lang.Integer" resultType="java.lang.Integer"> select trnsct_id from t_trnsct_way_l where <if test="langId != null" > and lang_id = #{langId} </if> </select>
上述代码存在一些问题,首先入参是java.lang.Integer, 而不是map或者实体的入参方式,对于这类单个入参然后用if判断的,mybatis有自己的内置对象,
如果你在if判断里面 写的是你的入参的对象名,那就报异常:Internal error : nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named \'langId\' in \'class java.lang.Integer\'
3、正确代码:
这里就涉及到mybatis的内置对象_parameter,单个参数判断的时候,就不像1、 2那样直接用参数对象名判断了。还有就是数据类型最好加上
以上是关于mybatis映射异常的主要内容,如果未能解决你的问题,请参考以下文章