我們都知道mybatis在進行參數判斷的時候,直接可以用
1、常規代碼
update t_test_l where trnsct_way_l_id = #{trnsctWayLId,jdbcType=INTEGER} trnsct_way_id = #{trnsctWayId,jdbcType=TINYINT}, lang_id = #{langId,jdbcType=INTEGER},
但是單個參數和多參數的判斷有個不同點,當我們的入參為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>
如果你在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那樣直接用參數對象名判斷了。還有就是數據類型最好加上