Mybatis传多个参数的问题 及MyBatis报错 Parameter '0' not found. Available parameters are [arg1, arg0, param1 问题

对于使用Mybatis ,传多个参数,我们可以使用对象封装外,还可以直接传递参数

对象的封装,例如查询对象条件basequery对象


  id= "whereSql" >
    
      test="gameCode != null and gameCode != ''" >
        and game_type_coding = #{gameCode}
      
      test="goodsTypeId != null">
        and goods_type_id = #{goodsTypeId}
      
      test="accId != null">
        and account_id = #{accId}
      
      test="delFlag != null">
        and del_flag = #{delFlag}
      
    
    limit #{start},#{rows}
  


直接传递参数

例如:

mapper方法

selectByGameIdAndGoodsTypeId(Long gameTypeId, Long goodsTypeId);

对应的xml文件方法:


第一:在select标签后就不再使用parameterType,因为这个标签只能指定一个参数,而两个参数及以上的,则不用再使用

第二:在sql语句里面以上的写法是错误的(为了演示执行报错)

会报错

Parameter '0' not found. Available parameters are [arg1, arg0, param1, param2]

注意这里使用的mybatis的版本号

在MyBatis3.4.4版不能直接使用#{0}要使用 #{arg0}

0是指参数的索引,从0开始。第一个参数是0,第二个参数是1,依次类推

以下正确的写法:

第三种:

刚刚说这样的会报错。解决办法,更改mapper方法


加上@Param注解

selectByGameIdAndGoodsTypeId(@Param("gameTypeId")Long gameTypeId, @Param("goodsTypeId") Long goodsTypeId)

你可能感兴趣的:(mybatis)