how do I configure autowire in spring
Asked
Active
Viewed 1.4k times
1 Answers
11
Add the context schema to your configuration XML and use the @Autowired annotation:
http://static.springsource.org/spring/docs/2.5.x/reference/beans.html#beans-annotation-config

duffymo
- 305,152
- 44
- 369
- 561
-
@autowired alone was not enough - exactly what I was missing. thanks. – flybywire Oct 05 '09 at 07:31