I have two projects, one of which includes the other as a child jar. They both use spring, but the child jar is newer than the parent project and uses spring 3.2. The parent uses 3.0.1.
The parent include the child's spring config like so:
<import resource="classpath:/enote_spring_cfg.xml" />
But I am getting :
Line 9 in XML document from class path resource [enote_spring_cfg.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'beans'.
Line 9 is, of course, the beans tag. So at best the error stinks as it is complaining on the line that is beans that there is no beans. But that like includes schemaLocation references to 3.2, which is, I presume, the real problem.
While I will be asking permission to update the parent project to a more recent spring, my organization often drags its feet on stuff like this. How would one suggest I work around this problem? Am I doing the include the "right way", or is it legit for me to remove the 3.2 references in the client xml? Note that we probably aren't using any bleeding edge features that 3.2 would support but not 3.0.