Mybatis异常_01_Invalid bound statement (not found)

异常信息:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.taotao.mapper.TbItemMapper.selectByExample

原因:找不到mapper映射文件

解决方法:修改taotao-manager-mapper的pom文件,在pom文件中添加如下内容:

<!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>

Mybatis异常_01_Invalid bound statement (not found)

Mybatis异常_01_Invalid bound statement (not found)

上一篇:location 禁止以/data开头的文件


下一篇:SQLite multiple threads