@Tijo
You need to check a few things:
Is Spring 3.0 used? You refer to spring - beans -3.0.xsd, spring -context-3.0.xsd and spring -mvc-3.0.xsd in your configuration, so you need to use Spring 3.0. * jars.
Perhaps you already have all the necessary JAR paths in the build path, most likely as โLinked Librariesโ by adding external JAR files to your build path. You also need to store all the JARs in the webapp folder WEB_INF / lib / (put them in this folder directly, and not in the WEB-INF / lib / subfolder). Only then does your web server know about them. This is what God means.
It is more subtle. Make sure you do not have multiple versions of the Spring JAR in the WEB-INF / lib folder.
These are the same steps that you need to check for other NameSpaceHandler errors, for example
Unable to locate Spring NamespaceHandler for XML schema namespace http:
or
Unable to locate Spring NamespaceHandler for XML schema namespace [http:
Hope this helps!
m2p
source share