Cause: org.apache.ibatis.binding.BindingException: Parameter 'username' not found异常

# Error querying database.  Cause: org.apache.ibatis.binding.BindingException: Parameter 'username' not found. Available parameters are [arg1, arg0, param1, param2]
### Cause: org.apache.ibatis.binding.BindingException: Parameter 'username' not found. Available parameters are [arg1, arg0, param1, param2]
Disconnected from the target VM, address: '127.0.0.1:65195', transport: 'socket'

如上异常
错误原因:

  • 接口方法里包含多个参数时,使用@Param注解进行标识
  • 在这里插入图片描述
  • 记得添加
  • import org.apache.ibatis.annotations.Param;
  • 依赖
发布了25 篇原创文章 · 获赞 22 · 访问量 3660

猜你喜欢

转载自blog.csdn.net/weixin_42443419/article/details/92835278
今日推荐