We'll just get it out there that I'm very new to Spring and just trying to get my feet wet.
That said, I walked through the tutorial:
http://static.springframework.org/docs/Spring-MVC-step-by-step/index.html and everything worked fine. A little bit of my problem is that the tutorial covers a bit too much, I'm working with an old
servlet and just trying to wade my way into spring (DI in particular) with. So the basic set up is that my servlet uses a class called KMLCreator, no big deal. It's within that class that I want to inject an object called Config. The Config object is a custom Config object that takes and InputStream of an xml file. The KMLCreator will use the config object to pull a few application config parameters.
I'm really not sure if I'm approaching this correctly, so please feel free to comment on that in general. I hope my little preamble made it clear what I'm attempting to do. The error I get is below.
Thanks,
Matt