@Service和@Autowired注释的Java / Spring问题

前端之家收集整理的这篇文章主要介绍了@Service和@Autowired注释的Java / Spring问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

[春季3.0.5]
[jboss 5.1]

我有几个标记为@Service的类,它实现了相同的接口.

例如,

@Service(value="test1") 
public TestImpl1 implements Test {} 
@Service(value="test2") 
public TestImpl2 implements Test {} 

接下来,我有以下结构

public SomeClass { 
@Autowired 
@Qualifier("test1") 
Test test1; 
@Autowired 
@Qualifier("test2") 
Test test2; 

我得到一个例外(在部署时)

10:36:58,277 ERROR [[/test-web]] Servlet /test-web threw load() 
exception 
org.springframework.beans.factory.NoSuchBeanDefinitionException: No 
unique bean of type [pl.tests] is defined: expected single matching 
bean but found 2: [test1,test2] 
        at 
org.springframework.beans.factory.support.DefaultListablebeanfactory.doReso lveDependency(DefaultListablebeanfactory.java: 
796) 
        at 
org.springframework.beans.factory.support.DefaultListablebeanfactory.resolv eDependency(DefaultListablebeanfactory.java: 
703) 
        at 
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostPro cessor 
$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java: 
474) 

有谁知道如何解决这个问题?

T.

最佳答案
一些选择:

>在注入点使用@Resource(name =“test1”)
>可以使用javax.inject.Qualifer机制.简而言之 – 您定义注释(@Test)并使用@Qualifier注释注释.然后在注入点上使用@Autowired @Test.
>在目标bean上显式设置限定符.文档说只显示xml版本< qualifier />,但尝试在服务定义上添加@Qualifier(“test1”)

Here is the documentation about it

原文链接:https://www.f2er.com/spring/431430.html

猜你在找的Spring相关文章