I've managed to configure to spring to auto-detect my components using the @Autowire
annotation. However the problem is that not all the components are being Auto wired.
Specifically My DAO's are being bound but my service objects aren't. I have to explicitly
create a bean for my service object in the spring xml config file.
Any clue as to why this is happening?