Mybatis單個引數的if判斷(針對異常:There is no getter for property..)

執筆記憶的空白發表於2015-05-22

我們都知道mybatis在進行引數判斷的時候,直接可以用<if test=""></if> 就可以了,如下:

1、常規程式碼

<update id="update" parameterType="com.cq2022.zago.order.entity.Test" >
    update t_test_l
    <set >
      <if test="trnsctWayId != null" >
        trnsct_way_id = #{trnsctWayId,jdbcType=TINYINT},
      </if>
      <if test="langId != null" >
        lang_id = #{langId,jdbcType=INTEGER},
      </if>
    </set>
    where trnsct_way_l_id = #{trnsctWayLId,jdbcType=INTEGER}
  </update>

但是單個引數和多引數的判斷有個不同點,當我們的入參為entity實體,或者map的時候,使用if 引數判斷沒任何問題。

但是當我們的入參為java.lang.Integer  或者 java.lang.String的時候,這時候就需要注意一些事情了

具體程式碼如下(我們們看著程式碼說,先展示錯誤程式碼):

2、錯誤程式碼

<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那樣直接用引數物件名判斷了。還有就是資料型別最好加上




相關文章