在春天,每当我<context:annotation-config/>
在 spring.xml 中写入时,我都会收到此错误:-
线程“main” org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException 中的异常:来自类路径资源 [spring.xml] 的 XML 文档中的第 81 行无效;嵌套异常是 org.xml.sax.SAXParseException;行号:81;列号:30;cvc-complex-type.2.4.c:匹配通配符是严格的,但找不到元素“context:annotation-config”的声明。
我的 spring.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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"
xmlns:context="http://www.springframework.org/schema/context"
>
<bean id="circle" class="com.mysite.Circle">
</bean>
...
<context:annotation-config/>
谁能告诉我我哪里出错了????