当前位置: 代码迷 >> 综合 >> org.apache.ibatis.binding.BindingException: Parameter 'Id' not found
  详细解决方案

org.apache.ibatis.binding.BindingException: Parameter 'Id' not found

热度:83   发布时间:2023-11-07 13:15:16.0

异常:

org.apache.ibatis.binding.BindingException: Parameter 'Id' not found. Available parameters are [arg1, Id, param1, param2]

 解决:

在XXXmapper.java 的方法参数中,添加注解@Param(),以让ibatis识别

int select(@Param("Id") Long Id);

 

  相关解决方案