VS Code 没有可用的“xxx.MyMapper”类型的合格 bean

问题描述

我试图在 VS Code 上启动项目。有例外

没有可用的“xxx.MyMapper”类型的合格 bean

同时,这个项目没有改动就在Intellij IDEA上启动了,没有任何问题。 为什么会发生,我做错了什么?

@Mapper(
    componentModel = "spring",config = BaseMapperConfig.class,implementationName = "ThisIsMyMapper")
public interface MyMapper {
--------------------------------------------------------------
@Component
@Primary
@Slf4j
public class MyMapperImpl implements MyMapper {

  private final MyMapper myMapper;

  public MyMapperImpl(@Qualifier("ThisIsMyMapper") MyMapper myMapper) {
    this.myMapper = mydMapper;
  }

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)