您的位置:首页 > 其它

Invalid bound statement (not found):

2017-06-03 11:41 344 查看


出现此错误原因是mapper的配置文件没有加入到classpath下。

解决方法:

在pom.xml文件下添加如下:

<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: