解决No qualifying bean of type 'xxxMapper' available: expected at least 1 bean which qualifies as autow
问题:
刚用低代码平台引入的一个module,但是启动报错No qualifying bean of type 'xxxMapper' available: expected at least 1 bean which qualifies as autow
初步怀疑是mapper扫描的时候没有指定路径,引发了全盘扫描,扫描到其中componens有相同名字的bean,就会报重复注入的错误。
思路:
1.查看启动项,是否被MapperScan(dao路径)修饰
2.如果启动类不写,config类中也需要指定MapperScan(dao路径)
3.读取的Nacos配置文件是复制别的项目的,其中Entity和mapper的指定路径未修改
解决:
在Config里加了加载类 MybatisPlusConfig, 并指定 @MapperScan("com.cloudoer.dct.*.dao")