解决Unsatisfied dependency expressed through field ‘baseMapper‘; nested exception
Posted 沛沛老爹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Unsatisfied dependency expressed through field ‘baseMapper‘; nested exception相关的知识,希望对你有一定的参考价值。
早上起来的时候发现报了个类似的错误。
Unsatisfied dependency expressed through field ‘baseMapper‘; nested exception
大概意思就是说当前的dao没有办法映射了。
仔细看了下网上的问题,一般情况是以下两种情况。
1、依赖的问题
使用spring boot整合mybatis-plus导入的时候出错的。
用错了依赖。
2、@Mapper注解的问题。
把dao上的@Mapper注解删掉
我的项目在放假前还是好好的,我仔细想了下,好像我移动了下dao的路径。
对项目架构进行了一定的整合
应该是移动路径后,在application启动的时候,使用MapperScan没办法扫描到路径导致的。
我仔细对比了项目架构和scan对应的路径,发现还真是因为层级变动导致的。
问题找到,直接破解
把路径重新一 一对应。
重新启动,发现问题解决
2022深度学习开发者峰会 5月20日13:00让我们相聚云端,共襄盛会!以上是关于解决Unsatisfied dependency expressed through field ‘baseMapper‘; nested exception的主要内容,如果未能解决你的问题,请参考以下文章
springboot Error creating bean with name "XXX" Unsatisfied dependency expressed through fi
spring boot unsatisfied dependency 通过字段 customerDetailsSerice 嵌套异常表示
Error creating bean with name ‘tagServiceImpl‘: Unsatisfied dependency expressed through field
Spring - Error creating bean with name ‘XX‘: Unsatisfied dependency expressed through field ‘XX‘
Spring - Error creating bean with name ‘XX‘: Unsatisfied dependency expressed through field ‘XX‘
记录:Unsatisfied dependency expressed through field ‘XxxService‘...亲测有效