欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Invalid bound statement (not found)问题解决方案

程序员文章站 2022-05-28 12:57:06
...

bug记录

A:问题的出现

Invalid bound statement (not found): com.tiyity.edu.mapper.EduCourseMapper.queryCourseConfirmInfo

B:问题的分析

class目录下没有找到和mapper对应的xml文件

c:如何解决

1.在parent项目的pom.xml文件添加

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

如果加了上面的配置依然没有在target的classes里面还是没有xml 需要rebuild一下

2.如果出现这个错误:‘mapperLocations’ was not specified or no matching resources found

在你所在微服务的application.properties里面添加

#application.properties配置扫描xml文件所在路径
mybatis-plus.mapper-locations=classpath:com/tiyity/edu/mapper/xml/*.xml

重启微服务基本就解决了