报错:Description Resource Path Location Type
cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'context:component-scan'. applicationContext.xml /Spring/src line 12 XML Problem
翻译:
描述资源路径位置类型
cvc-complex-type.2.4。c:匹配的通配符是严格的,但是对于元素的上下文:组件扫描来说,没有任何声明可以找到。applicationContext。XML/spring/src行12 XML问题
原因:在你的applicationContext.xml声明了<context:component-scan base-package="com.itcast" />缺少对于此元素的约束
解决办法:
在你的applicationContext.xml中的<beans>元素中加上xmlns:context="http://www.springframework.org/schema/context"
并且在xsi:schemaLocation中加上 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
问题解决