【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w

最近在写一个用到了dubbo的项目,在配置文件中添加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:application'.
    - 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 .

 

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第1张图片

 

原因:

因为没有引入dubbo.xsd配置文件

 

解决方案:

1、首先下载一个dubbo.xsd文件,保存到本地,保存路径可以自己定义,本人保存的路径是“E:\dubbo.xsd”

参考下载地址:dubbo.xsd 点击进入下载页面。

2、在eclipse里面进行配置:

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第2张图片

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第3张图片

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第4张图片

选中的dubbo.xsd文件,然后确定

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第5张图片

修改图中key的值

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第6张图片

原key:http://code.alibabatech.com/schema/dubbo

新key:http://code.alibabatech.com/schema/dubbo/dubbo.xsd

修改后:

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第7张图片

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第8张图片

保存后,选中报错项目,右键

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第9张图片

点击Validate,等待它加载完,加载完会弹出这个框,确定就可以了。

【dubbo之.xml配置文件报错】Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching w_第10张图片

问题圆满搞定!!!

 

你可能感兴趣的:(Dubbo)