admin 管理员组文章数量: 1184232
Unsatisfied dependency expressed through field baseMapper
- springboot 报错:Unsatisfied dependency expressed through field baseMapper
springboot 报错:Unsatisfied dependency expressed through field baseMapper
mapper类上已经添加了 @mapper注解但是仍然报错
错误原因:
// 在配置 MybatisPlusConfig 时 MapperScan 的路径写错
@Configuration
@EnableTransactionManagement
@MapperScan("com.chenjiayan.vueblog.mapper")
public class MybatisPlusConfig {
@Bean
public PaginationInterceptor paginationInterceptor() {
PaginationInterceptor paginationInterceptor = new PaginationInterceptor();
return paginationInterceptor;
}
}
总结:
配置mapper时即使标注了@Mapper 注解,也要确保@MapperScan中的路径正确。
本文标签: dependency Unsatisfied expressed baseMapper Field
版权声明:本文标题:Unsatisfied dependency expressed through field baseMapper 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.roclinux.cn/b/1755027224a3062308.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论