springboot整合mybatis 异常 org.apache.ibatis.binding.BindingException: Invalid bound statement (not foun

Posted wenfan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot整合mybatis 异常 org.apache.ibatis.binding.BindingException: Invalid bound statement (not foun相关的知识,希望对你有一定的参考价值。

出现异常原因: 1.IDEA 编译时,没有将mapper.xml文件编译进去

        2.application.yml 文件没有指定 mapper.xml 的路径 

        正确配置

mybatis:
          mapperLocations: classpath*:club/wenfan/youtube/mapper/xml/*.xml
          type-aliases-package: club.wenfan.youtube.bean

pom.xml 中添加

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

两点缺一,都会处出现mapper.xml 文件找不到异常

以上是关于springboot整合mybatis 异常 org.apache.ibatis.binding.BindingException: Invalid bound statement (not foun的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot+MyBatis整合中的坑以及Property 'sqlSessionFactory' or 'sqlSessionTemplate' are re

springboot整合mybatis 异常 org.apache.ibatis.binding.BindingException: Invalid bound statement (not foun

dubbo学习 springboot整合dubbo mybatis mysql

SpringBoot 集成MyBatis-Plus提示反序列化异常:cannot deserialize from Object value (no delegate- or property-bas

实践丨SpringBoot整合Mybatis-Plus项目存在Mapper时报错

关于Springboot整合mybatis启动的问题