mybatisplus-plus的mapper.xml不需要配置,可是依然出现了没有配置mapper.xml还是出现Invalid bound statement (not found)的错误
时间: 2023-06-15 19:07:47 浏览: 150
详解mybatis-plus的 mapper.xml 路径配置的坑
5星 · 资源好评率100%
如果你使用的是 MyBatis-Plus 3.x 版本,它支持无 XML 配置的方式使用,但是需要在启动类上添加 `@MapperScan` 注解扫描对应的 Mapper 接口路径,例如:
```java
@SpringBootApplication
@MapperScan("com.example.mapper") // 扫描 Mapper 接口
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
```
如果还是出现 `Invalid bound statement (not found)` 的错误,可能是因为你的 Mapper 接口方法名和对应的 SQL 语句 id 不匹配。MyBatis 在执行 Mapper 接口方法时,会根据方法名去寻找对应的 SQL 语句 id,如果找不到就会抛出该错误。你可以在启动时开启 MyBatis 的日志,查看具体哪个 SQL 语句没有找到。
在 MyBatis-Plus 中,Mapper 接口方法名和对应的 SQL 语句 id 默认是一致的,即方法名就是 SQL 语句 id,例如:
```java
public interface UserMapper extends BaseMapper<User> {
// 方法名为 selectById,对应的 SQL 语句 id 也为 selectById
User selectById(Long id);
}
```
如果你的 SQL 语句 id 不是方法名的形式,可以在对应的方法上使用 `@Select`、`@Update`、`@Insert`、`@Delete` 等注解指定 SQL 语句 id,例如:
```java
public interface UserMapper extends BaseMapper<User> {
// 方法名为 selectUserById,对应的 SQL 语句 id 为 user.selectById
@Select("user.selectById")
User selectUserById(Long id);
}
```
希望这些能帮到你解决问题。
阅读全文