解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题,即在mybatis中dao接口与mapper配置文件在做映射绑定的时候出现问题,简单说,就是接口与xml要么是找不到,要么是找到了却匹配不到。
记住:接口名与Mybatis的映射文件名一定要一模一样。

原文地址:https://www.cnblogs.com/renxiuxing/p/15733838.html