spring配置dubbo出错解决之道

来源:互联网 发布:node.js sqllite 编辑:程序博客网 时间:2024/05/21 09:34
导入工程之后,dubbo标签处一直报红叉,提示: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 'dubbo:module'. 
- schema_reference.4: Failed to read schema document 'http://code.alibabatech.com/schema/dubbo/dubbo.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>.或者是文件校验是严格的,但是没有发现<dubbo:reference的定义等等。

查阅了相关资料后,皇天不负有心人,找到了解决的办法。

之所以报错是因为找不到dubbo.xsd文件。

解决方案:

1.下载一个dubbo.xsd文件

    免费去下载:http://download.csdn.net/detail/zp522123428/8036977

2.windows->preferrence->xml->xmlcatalog 中add->catalog entry  ->file system 选择刚刚下载的文件路径。修改key值为:http://code.alibabatech.com/schema/dubbo/dubbo.xsd 。

单击OK即成功解决。如果还报错,重新启动即可。




0 0