一、报错
二、原因
三、解决
方式一
mybatis:
mapperLocations: classpath:mapper/**/*.xml
方式二
<!-- 项目打包时会将java目录中的*.xml文件也进行打包 -->
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
标签:xml,statement,Invalidbound,报错,BindingException,found
From: https://www.cnblogs.com/meidanlong/p/17986606