码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-02-10 12:14:14      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:mybatis   spring   dea   perl   not   idea   mapper   ack   directory   

出现异常原因: 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 found):

标签:mybatis   spring   dea   perl   not   idea   mapper   ack   directory   

原文地址:https://www.cnblogs.com/outxiao/p/10358967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!