[resorte 3.0.5] [jboss 5,1]Java/Problema del resorte con @Service y @Autowired anotaciones
Tengo varias clases etiquetados como @Service
, que implementa thet misma interfaz.
Por ejemplo,
@Service(value="test1")
public TestImpl1 implements Test {}
@Service(value="test2")
public TestImpl2 implements Test {}
A continuación, tiene la siguiente estructura
public SomeClass {
@Autowired
@Qualifier("test1")
Test test1;
@Autowired
@Qualifier("test2")
Test test2;
Me estoy haciendo una excepción (al despliegue)
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)
Alguien sabe cómo resolver este ?
T.
¿Cuál es 'pl.tests'? – skaffman
lo siento, pl.tests.SomeClass – user6778654