You should see both a service-context.xml and a generated-service-context.xml file. The generated one can be modified, but our design goal was to actually put the service-context.xml file there for you to modify leaving the generated one for us to modify, etc. You will notice if you look through the context files, and the web.xml file, that we load specific context files and then those context files import other context files. We left the “non generated” files for developers to modify by hand.
Regarding the issue of not being able to Autowire our beans into your beans, there must be some issue with the order of the component scanning I think. One thing to try would be to add the autowire of your classes to the service-context.xml file. You could also try creating your own context file and then adding that context file to the list of context files that are being loaded in the web.xml file where it configures the Dispatch Servlet:
org.springframework.web.servlet.DispatcherServlet
If you can’t get it to work, please send me a copy of your project (or similar) to jkennedy@skywaysoftware.com.
I would need to know which of our objects (Services, DAOs) etc you are trying to Autowire and see where you are trying to add your component scan etc.
Thanks,
Jack