Invalid bound statement (not found): com.example.mubatis_plus.mapper.UserMapper.selectAll 问题解决:pom添加
Invalid bound statement (not found): com.example.mubatis_plus.mapper.UserMapper.selectAll
问题解决:pom添加
<build>
<resources>
<resource>
<!-- 描述存放资源的目录,该路径相对POM路径-->
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>