spring配置错误Multiple annotations found at this line

来源:互联网 发布:贝太厨房软件 编辑:程序博客网 时间:2024/05/19 16:23
错误提示
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 <xsd:schema>.
    - cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'context:component-scan'.

配置内容
<beans xmlns="http://www.springframework.org/schema/beans"
    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">


    <context:component-scan base-package="controller"/>

错误原因
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操作,问题解决
原创粉丝点击