关于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-4.3.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’.

在整合ssm框架时产生以上错误

发现配置文件的版本号和pom.xml依赖文件的版本号不一致
关于Multiple annotations found at this line: 解决办法

关于Multiple annotations found at this line: 解决办法
我在pom.xml中使用的是

<spring.version>4.3.7.RELEASE</spring.version>

使用的是 4.3 版本的,但是上面是4.0版本的

把图上的版本号改为一致后
选择Project下的clean
关于Multiple annotations found at this line: 解决办法
重新构建项目,完美解决