天天看点

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)