今天做项目的时候报错Invalid bound statement (not found),这种情况是找不到mapper映射文件,打开编译后的文件发现mapper里面只有接口而没有xml文件,这种情况是xml被过滤掉了,只需要在pom.xml添加如下代码就可以解决该异常。
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>