Hi! One of my coworkers has produced a new library (jar) that contains a bunch of java classes and a spring xml file. I would really like to be able to use the normal T5-style dropin for this jar, autoloading the services into my app registry without the need for further wiring. But there's a spring xml file involved, so that won't work out of the box.
I'm considering rewriting the classes to support Tapestry IOC instead of Spring, but that seems a bit unnecessary, considering that spring can be integrated into Tapestry IOC. So, is there a way to create the spring context from the xml file, and load the provided spring beans into the T5 module? I'm looking at the TapestrySpringFilter for leads, but as far as I can see, it only provides support for getting the spring context from the servlet context...