Daniel Cullender [
http://community.jboss.org/people/cullendw] replied to the discussion
"@Autowiring of beans from Spring applicationcontext"
To view the discussion, visit:
http://community.jboss.org/message/542678#542678
--------------------------------------------------------------
I am not too familiar with the SpringBeanAutowiringInterceptor, but I assume you have read
http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/...
http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/....
Since since you are using Spring 2.5, try using @Qualifier so you would have the following
configuration :
@Autowire
@Qualifier("servicio")
private DummyService servicio
and in your application context ...
<bean id="servicio"
class="mx.com.tattvait.cyf.service.modulo.impl.DummyServiceImpl"/>
--------------------------------------------------------------
Reply to this message by going to Community
[
http://community.jboss.org/message/542678#542678]
Start a new discussion in Spring Integration at Community
[
http://community.jboss.org/choose-container!input.jspa?contentType=1&...]