Mapped Statements collection does not contain value for

来源:互联网 发布:网络电视放不出来 编辑:程序博客网 时间:2024/05/16 23:45

Mapped Statements collection does not contain value for

今天调试MyBatis的多对多关系,一直报错Mapped Statements collection does not contain value for。。。。

Mapped Statements collection does not contain value for后面是什么类什么方法之类的: 
错误原因有几种: 
1、mapper.xml中没有加入namespace 
2、mapper.xml中的方法和接口mapper的方法不对应 
3、mapper.xml没有加入到mybatis-config.xml中(即总的配置文件),例外:配置了mapperxml文件的路径与mapper.java的路径一样的除外 
4、mapper.xml文件名和所写的mapper名称不相同。

0 0