Unsatisfied dependency expressed through field ‘baseMapper‘解决方法

我很纳闷,注解啥的导入的jar包也没有任何问题,为何会报这错误呢?我反复确认mapper的注解没有任何问题

Mapper层注解

Unsatisfied dependency expressed through field ‘baseMapper‘解决方法_第1张图片

所报的错误及问题分析

Unsatisfied dependency expressed through field ‘baseMapper‘解决方法_第2张图片
无法识别mapper但是注解和jar包都没有问题,然后我看了看包,发现,mapper层不在com.czxy包下
Unsatisfied dependency expressed through field ‘baseMapper‘解决方法_第3张图片
将mapper层移至com.czxy包下
Unsatisfied dependency expressed through field ‘baseMapper‘解决方法_第4张图片
启动正常了

Unsatisfied dependency expressed through field ‘baseMapper‘解决方法_第5张图片
然后我查了下父本的组名
Unsatisfied dependency expressed through field ‘baseMapper‘解决方法_第6张图片
所以出现该错误的根源就是mapper层没有在com.czxy包下,导致mapper层无法被识别,小伙伴们,要注意这个细节哦,组名和包名要保持一致

你可能感兴趣的:(bug,bug)