Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to autowire beans using the @Autowired annotation without using component scanning?

share|improve this question

2 Answers

Yes. <context-component-scan .. /> is responsible for discovering beans annotated with @Component, @Controller, @Service, @Respository, etc.

In order to have annotations processed (@Autowired, @Resource, etc) you need <context:annotation-config />. Thus annotations are processed on beans that are listed in applicationContext.xml.

As far as I know, <context-component-scan .. /> activates <context:annotation-config /> automatically.

This is true for both sprign 2.5 and 3.0. (thanks skaffman)

share|improve this answer
@Bozho Good (+1) Take a look at this question: stackoverflow.com/questions/2458769/… – Arthur Ronald F D Garcia Mar 17 '10 at 4:06
1  
(+1) Yes, this is still the case in 3.0 – skaffman Mar 17 '10 at 7:27
I am using Spring 3.1 and the autowiring works only with <context-component-scan .. />. In fact I do not need <context:annotation-config /> to activate autowiring in beans – Anand Sunderraman May 3 '12 at 5:49

I have never tried without component-scanning enabled, however I can confirm that @Autowire annotations works in Spring 3.0.x even with beans that are defined via XML.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.