美文网首页
SpringBoot 异常

SpringBoot 异常

作者: _by_w_z | 来源:发表于2017-08-02 11:13 被阅读0次
  1. mybatis spring application getting - org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

原因
  idea中将mapper类型是source,而xml文件在发布时不会编译,同时也不会发布到target中,导致项目运行时找不到mapper.xml文件。

解决方案:
  在pom.xml的build中添加

<build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*Mapper.xml</include>
                </includes>
            </resource>
        </resources>
</build>

相关文章

网友评论

      本文标题:SpringBoot 异常

      本文链接:https://www.haomeiwen.com/subject/rpyelxtx.html