I\'ve made a maven project in Spring 3.0, I\'ve made some DAO, services and controllers, in one of mine controller I call a service in which I start a thread, the problem is tha
If you need to autowire a newly created instance (without container support) invoke
ctx.getAutowireCapableBeanFactory().autowireBean(instance)
where ctx is your ApplicationContext and instance the newly created instance.
I asked a similar question here