Field baseMapper in com.baomidou.mybatisplus.extension.service.impl.ServiceImpl required a single bean, but 9 were found:
时间: 2023-11-26 12:44:47 浏览: 230
mybatis 生成bean,mapper,service代码
5星 · 资源好评率100%
这个错误通常是因为在 Spring 容器中存在多个类型为 `baseMapper` 的 Bean,而 `ServiceImpl` 类只能注入一个。解决方法是在 `baseMapper` 上添加 `@Primary` 注解,或者在 `ServiceImpl` 中使用 `@Qualifier` 指定具体的 Bean 名称。
阅读全文