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 <xsd:schema>.

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

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


睡了一觉之后,又来思考这个问题,我在想之所以出现这种错误的根本原因在于联网情况下,在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,于是出现如下的一张图:

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.cSpringMVC整合DWR时出现这样的错误Multiple annotations found at this line: 	- cvc-complex-type.2.4.c



然后在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都会找不到而报错。。。

无语死了,不过终于解决了困扰多日的问题了。



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

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

上一篇:Java封装自己的Api


下一篇:Python快速学习04:循环 & 函数