mapped Statements collection does not contain
初次接触使用Mybatis会出现“Mapped Statements collection does not contain value for ….“错误提示
常见的错误原因有几种:
- mapper.xml中没有加入namespace
- mapper.xml中的方法和接口mapper的方法不对应
- mapper.xml没有加入到mybatis-config.xml中(即总的配置文件),例外:配置了mapper文件的包路径的除外
- mapper.xml文件名和所写的mapper名称不相同。