org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.kdk.doking.mapper.UserMapper.queryUserList
时间: 2023-08-14 10:12:05 浏览: 71
JAVA之ibatis2.3.X.ppt
引用\[1\]和\[2\]中提到的错误信息是"Invalid bound statement (not found)",这意味着在MyBatis的映射文件中找不到对应的SQL语句。具体来说,引用\[1\]中的错误信息是"com.cloud.lowcode.mapper.UserMapper.queryByParam",而引用\[2\]中的错误信息是"com.mybatis.mapper.OrdersMapper.finarray"。这些错误信息表明在对应的映射文件中,没有找到名为"queryByParam"和"finarray"的SQL语句。
根据你提供的问题"org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.kdk.doking.mapper.UserMapper.queryUserList",可以推断出你遇到了类似的问题。错误信息中的"com.kdk.doking.mapper.UserMapper.queryUserList"表示在"UserMapper"这个映射文件中找不到名为"queryUserList"的SQL语句。
要解决这个问题,你需要检查对应的映射文件中是否存在名为"queryUserList"的SQL语句。确保SQL语句的命名和映射文件中的命名一致。另外,还要确保映射文件的路径配置正确,以便MyBatis能够正确找到映射文件。
总结回答:你遇到的问题"org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.kdk.doking.mapper.UserMapper.queryUserList"是因为在"UserMapper"映射文件中找不到名为"queryUserList"的SQL语句。你需要检查映射文件中的SQL语句命名和路径配置是否正确。
#### 引用[.reference_title]
- *1* [解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):xxx问题](https://blog.csdn.net/lvoelife/article/details/128017529)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* *3* [org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.mybatis.mapper.](https://blog.csdn.net/weixin_46388053/article/details/124680946)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文