Mapped Statements collection does not contain value for 解决方法
·
Mapped Statements collection does not contain value for。
遇到这方面的问题通常原因有三种:
1、mybatis的映射文件的命令空间与接口的全限定名不一致;
2、有可能mybatis的映射文件名字与接口的类名字不一致;
3、有一种情况就是接口声明的方法在映射文件里面没有。
4、mapper包中的mapper.xml没有编译到targger中, maven的配置文件pom.xml可能有问题,没有配置build的resources,配置如下:
在<build>中加
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
<include>**/*.tld</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
指定你包含的数据
更多推荐
已为社区贡献5条内容
所有评论(0)