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

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

而不是:

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

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

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

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐