春<context:annotation-config/>
に spring.xml に書き込むたびに、このエラーが発生します:-
スレッド「メイン」での例外 org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: クラスパス リソース [spring.xml] からの XML ドキュメントの 81 行目が無効です。ネストされた例外は org.xml.sax.SAXParseException です。行番号: 81; columnNumber: 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/>
どこが間違っているのか誰か教えてください????