您的位置:首页 > 编程语言 > Java开发

SpringMVC整合DWR时出现这样的错误Multiple annotations found at this line: - cvc-complex-type.2.4.c

2017-07-03 17:51 936 查看
SpringMVC整合DWR时出现这样的错误Multiple annotations found at this line: - cvc-complex-type.2.4.c

 

这几天一直在纠结SpringMVC整合DWR时出现如下错误:

Multiple annotations found at this line:

- cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'dwr:annotation-config'.

- schema_reference.4: Failed to read schema document 'http://www.directwebremoting.org/schema/spring-dwr/spring-dwr-3.0.xsd', because 1)

could not find the document; 2) the document could not be read; 3) the root element of the document is not .

在网上找了很多答案,都没有解决。这里先上一张图:



睡了一觉之后,又来思考这个问题,我在想之所以出现这种错误的根本原因在于联网情况下,在 http://www.directwebremoting.org/schema/spring-dwr-3.0.xsd找不到该有的资源。于是,我复制了 http://www.springframework.org/schema/aop/spring-aop-3.0.xsd在浏览器的地址栏,发现可以显示,其他的也可以显示,即可以找到资源,唯独http://www.directwebremoting.org/schema/spring- dwr-3.0.xsd找不到。

于是我在地址栏上敲了http://www.directwebremoting.org/schema,还是失败,郁闷!我在敲http://directwebremoting.org/schema,少了三个WWW,于是出现如下的一张图:



终于有了,最后找到想要的:





然后在xml中改成http://directwebremoting.org/schema/spring-dwr/spring-dwr-3.0.xsd

就没有显示错误了,即使是http://www.directwebremoting.org/schema/spring-dwr/spring-dwr-3.0.xsd,多了三个www都会找不到而报错。。。

无语死了,不过终于解决了困扰多日的问题了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐