Mapper映射问题

在使用Mybatis-Plus进行代码生成后,启动Spring Boot项目遇到Mapper接口`UserMapper`无法自动注入的问题,表现为No qualifying bean of type 'com.aqya.mapper.UserMapper'的错误。解决方法包括检查Mapper接口是否缺少@Mapper注解,或者在Application中使用@MapperScan注解指定扫描路径,也可在代码生成器的strategyConfig中进行配置。
摘要由CSDN通过智能技术生成

在使用mybatis-plus代码生成时,启动项目发现的bug

No qualifying bean of type 'com.aqya.mapper.UserMapper' available

没有可用的“com.aqya.mapper.UserMapper”类型的合格 bean

Unsatisfied dependency expressed through field 'baseMapper'

通过字段“baseMapper”表示的不满足的依赖关系问题

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userController': Unsatisfied dependency expressed through field 'userService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userServiceImpl': Unsatisfied dependency expressed through field 'baseMapper'; nested exception is {@org.springframework.beans.factory.annotation.Autowired(required=true)}

Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.aqya.mapper.UserMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations:

这里要检查Mapper接口代码没有进行@Mapper映射。

也可以在Application中进行@MapperScan("com.xxx")

也可以在代码生成器

strategyConfig 加入

  builder.mapperBuilder().enableMapperAnnotation().build();//mapper注解
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值