spring配置错误Multiple annotations found at this line

错误提示
Multiple annotations found at this line:
    - schema_reference.4: Failed to read schema document 'http://www.springframework.org/schema/context/spring-context.xsd', because 1) could not
     find the document; 2) the document could not be read; 3) the root element of the document is not .
    - cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'context:component-scan'.

配置内容
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:aop="http://www.springframework.org/schema/aop"
    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
                        http://www.springframework.org/schema/aop
                        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd">


    

错误原因
http://www.springframework.org/schema/context/spring-context.xsd的版本不匹配导致的。
我使用的是spring-context-3.2.17.RELEASE.jar
修改为
http://www.springframework.org/schema/context/spring-context-3.2.xsd
然后做一次clean操作,问题解决

你可能感兴趣的:(日常错误)