Unsatisfied dependency expressed through field ‘baseMapper‘; nested exceptio

这个报错主要是在我是用mybatis-plus的时候遇到的,出现这个报错的原因主要有以下两点:

  1. 导入的依赖的问题:
    注意在使用spring boot整合mybatis-plus时导入的是如下依赖
        <dependency>
            <groupId>io.github.CaratacusgroupId>
            <artifactId>mybatis-plus-boot-starterartifactId>
        <version>1.0.9version>

而不是:

       <dependency>-->
            <groupId>com.suyeergroupId>-->
            <artifactId>mybatis-plusartifactId>-->
            <version>3.2.0.6version>-->
        dependency>-->
  1. 注解问题
    在mapper文件中的类中加入@Mapper注解
@Mapper
public interface UserMapper extends BaseMapper<Users> {
}

service接口实现类中加入@Service注解

@Service
public class UserServiceImpl extends ServiceImpl<UserMapper, Users> implements UserService {
}

你可能感兴趣的:(个人博客系统,spring,boot,mybatis)