我从 Spring 3 (3.1.2) 和 Google App Engine 开始。
我已经在网上学习了一个教程,现在,我的 bean-realted xml 在启动时出现了问题。
这是代码
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context/
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="my.example">
其中所有java文件的根包是“my.example”。子包是带有子包的“模型”和“控制器”。现在。
当我启动应用程序时,我收到此错误:
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 10 in XML document from ServletContext resource [/WEB-INF/spring-servlet.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'context:component-scan'.
有更多的堆栈跟踪。
有谁知道我该如何解决这个问题?我检查了 XSD,它们似乎是正确的。