出现 nested exception is org.apache.ibatis.binding.BindingException: Parameter ‘xx‘ not found 解决方法

目录

  • 前言
  • 1. 问题所示
  • 2. 原理分析
  • 3. 解决方法
  • 4. 拓展

前言

对于Mybatis的相关知识可看我这篇文章的详细介绍:Mybatis从入门到精通(全)

对应的Param参数,具体的使用可看我上述文章,post一个例子:
出现 nested exception is org.apache.ibatis.binding.BindingException: Parameter ‘xx‘ not found 解决方法_第1张图片

1. 问题所示

言归正传,在开发项目的时候遇到该错误

问题如下所示:

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'Parameters2' not found. Available pa

你可能感兴趣的:(BUG,mybatis,xml,java)