欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mybatis错误 Mapped Statements collection does not contain value for

程序员文章站 2022-07-15 12:14:23
...

有个错误一直很郁闷,搞了半天才搞定。错误如下:

java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for

 

在unit里测试怎么也通不过,最后终于找到问题,原来是命名空间没写对,如果使用mapper,则

<mapper namespace="com.sitech.mapper.StudentMapper">

 

空间中一定要写上Mapper的名称,否则就会报错。