idea ----> Cause: java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for...

使用idea测试mabtis实例时出现 Mapped Statements collection does not contain value for...

原因是idea找不到xxxMapper.xml文件,target中没有对应的mapper文件夹

在pom.xml中加入

<build>
    <!--扫描到xml文件-->
    <resources>
      <resource>
        <directory>src/main/java</directory>
        <includes>
          <include>**/*.xml</include>
        </includes>
      </resource>
    </resources>
  </build>

执行之后

注意:IDEA的扫描机制,src/main/java 中的xml文件不会被扫描到

猜你喜欢

转载自www.cnblogs.com/mrray1105/p/9057833.html