【异常】org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'showtype' not found. Available parameters are [0, 1, 2, param3, param1, param2]

解决办法:

当只有一个参数时,Mapper中可以不使用@Param

public void insertAdmin(String username);

但是有多个参数时必须用@Param

public void insertAdmin(@Param("username")String username,@Param("password")String password);

扩展:

@Param 注解在Mybatis中的使用 以及传递参数的两种方式:

第一种方法(使用@Param注解):

Dao层的方法:

void setAgeAndScore(@Param("username") String username,@Params("password") String password,@Params("age") String age,@Params("score")String score);

对应的Mapper.xml:

<update >
  update User
  set age = #{age,jdbcType=VARCHAR},
      score = #{score,jdbcType=VARCHAR}
  where username = #{username,jdbcType=INTEGER}
and password=#{password,jdbcType=INTEGER}
</update>

 

第二种方法:(不使用@Param注解)

Dao层的方法:

void setAgeAndScore(String username,String password,String age,String score);

对应的Mapper.xml:

<update >
  update User
  set age = #{2,jdbcType=VARCHAR},
      score = #{3,jdbcType=VARCHAR}
  where username = #{0,jdbcType=INTEGER}
and password=#{1,jdbcType=INTEGER}
</update>

 

相关文章:

  • 2021-11-01
  • 2021-07-16
  • 2022-12-23
  • 2021-12-26
  • 2021-09-18
  • 2021-12-30
  • 2021-08-21
猜你喜欢
  • 2021-07-26
  • 2022-12-23
  • 2022-12-23
  • 2021-11-12
  • 2021-10-11
  • 2022-12-23
  • 2021-07-19
相关资源
相似解决方案