@Qualifier(“unique_name”) 在 spring 中唯一标识应用程序上下文中的 bean 不起作用?

发布于 2024-11-10 16:59:40 字数 590 浏览 2 评论 0原文

我有以下场景:

class A  with "bean-a" in wireup.xml  

class B extends A  with "bean-b" in wireup.xml  

由于 B 也是 A,这意味着应用程序上下文中有多个类 A 的实例。

我想唯一标识类 B 的单例实例,因此我使用了

@Qualifier("unique_name") in class B 

and

<qualifier value="unique_name"/>  in "bean-b" of wireup.xml   

但问题仍然存在,我收到的消息为:

No unique bean of type [A] is defined: expected single matching bean but found 2: [A, B]  

如何解决此问题?

谢谢

I have the following scenario:

class A  with "bean-a" in wireup.xml  

class B extends A  with "bean-b" in wireup.xml  

Since B is also A, which means there are more than one instance of class A in application context.

I want to uniquely identify the singleton instance of class B, so I used

@Qualifier("unique_name") in class B 

and

<qualifier value="unique_name"/>  in "bean-b" of wireup.xml   

But the issue is still there, I get message as :

No unique bean of type [A] is defined: expected single matching bean but found 2: [A, B]  

How do I resolve this?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

殤城〤 2024-11-17 16:59:40

@Qualifier 不应该放在 classB 中。相反,它应该与自动装配一起放置。
你的类应该看起来像这样,

Class MyClass {

  @AutoWired
  @Qualifier("unique_name")
  private B b;

  //...

}

这意味着你告诉 autowire b 类型为 B(类型为 B 或 A,因为 B 是 A 的子类),但 bean 定义具有限定符“unique_name”。 wireup.xml 具有分配给 bean-b 的限定符标记。你的wireup.xml可能看起来像这样

<bean id="bean-A" class="com.domain.A" />
<bean id="bean-B" class="com.domain.B"
  <qualifier="unique_name" />
</bean>

The @Qualifier should not be put in classB. Instead it should be put along with autowired.
Your class should look like,

Class MyClass {

  @AutoWired
  @Qualifier("unique_name")
  private B b;

  //...

}

By this means you are telling autowire the b with of type B (type B or A because B is subclass of A) but with a bean definition which has the qualifier "unique_name". The wireup.xml has the qualifier tag assigned to bean-b. Your wireup.xml might look like this

<bean id="bean-A" class="com.domain.A" />
<bean id="bean-B" class="com.domain.B"
  <qualifier="unique_name" />
</bean>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文