ServiceImpl': Unsatisfied dependency expressed through field 'baseMapper'
时间: 2023-11-22 14:50:21 浏览: 129
根据提供的引用内容,你遇到的问题是关于依赖错误导致的`Unsatisfied dependency`。这个错误通常发生在Spring Boot项目中,当在Service实现类中使用@Autowired注解注入Mapper时,如果没有正确配置依赖关系,就会出现这个错误。
解决这个问题的方法是检查你的pom.xml文件中的依赖配置是否正确。根据引用提供的内容,你可以尝试将你的pom.xml文件中的Spring Boot版本改为2.7.1,并添加mybatis-spring-boot-starter的依赖。
另外,根据引用提供的链接,你可以查看这篇博客文章,了解更多关于解决`Unsatisfied dependency`错误的方法。
请参考以下示例代码来解决这个问题:
```xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.1</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.2</version>
</dependency>
<!-- 其他依赖 -->
</dependencies>
```
请注意,这只是一个示例,你需要根据你的具体情况进行相应的修改。
阅读全文