mybatis错误备忘

刚在mybatis里遇到的几个错误

Mapped Statements collection does not contain value for ...

原因之一可能是:Mapper配置的namespace不唯一,需要指定不一样的命名空间给mapper标签。

org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.lang.IllegalArgumentException: Mapped Statements collection already contains value for

原因之一可能是:有重载的方法(mybatis的mapper不允许重载,因为它需要通过方法名称[不加签名]去查找需要执行的sql)

你可能感兴趣的:(mybatis)