在自己做项目的时候,使用mapper报错Invalid bound statement (not found),检查了很多遍都没发现是什么问题。
检查目录target下面的mapper有没有出现创建的xml,如图
如果没有需要在pom.xml里面添加resource
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
<!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
重新刷新maven就能完美解决了