最近在写一个用到了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 <xsd:schema>.
原因:
因为没有引入dubbo.xsd配置文件
解决方案:
1、首先下载一个dubbo.xsd文件,保存到本地,保存路径可以自己定义,本人保存的路径是“E:\dubbo.xsd”
参考下载地址:dubbo.xsd 点击进入下载页面。
2、在eclipse里面进行配置:
选中的dubbo.xsd文件,然后确定
修改图中key的值
原key:http://code.alibabatech.com/schema/dubbo
新key:http://code.alibabatech.com/schema/dubbo/dubbo.xsd
修改后:
保存后,选中报错项目,右键
点击Validate,等待它加载完,加载完会弹出这个框,确定就可以了。
问题圆满搞定!!!