gpt4 book ai didi

java - 使用 @Component 继承抽象类 (NoUniqueBeanDefinitionException)

转载 作者:行者123 更新时间:2023-12-01 10:13:19 26 4
gpt4 key购买 nike

我正在尝试为我的 @Component 类创建一个具有继承的结构,以便重用一些通用代码。但我收到运行时错误:

Caused by: org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type [com.example.myproject.MainComponent] is defined: expected single matching bean but found 2: A,B

因此,我创建了 3 个类,如下所示:

public abstract class MainComponent {
...
void myMethodToOverride();
void myCommonMethod() {
// Some common code for A and B
}
...
}

@Component
public class A extends MainComponent {
...
@Override
void myMethodToOverride() {
// Some specific code of A class
}
...
}


@Component
public class B extends MainComponent {
...
@Override
void myMethodToOverride() {
// Some specific code of B class
}
...
}

Spring的@Component是否可以实现这种继承(我使用的是4.2.4版本)?

最佳答案

正如 Arnaud 已经提到的,你有一个带有 MainComponent 的 @Autowire。

要解决此问题,您可以使用@Qualifier,如下所述:

https://spring.io/blog/2014/11/04/a-quality-qualifier

关于java - 使用 @Component 继承抽象类 (NoUniqueBeanDefinitionException),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36039671/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com