在DUBBO项目中 配置文件出现找不到标签而报红叉 但项目能够正常运行

使用dubbo 项目的同学,大概都遇到过dubbo 配置文件出现错误的情况,但是项目又能够正常运行。

在eclipse 中错误如下:

- 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>

原因:eclipse 在校验xml 文件 找不到 dubbo的xsd文件。

解决方式:eclipse  windows  -   Preferences   -   XML  -    XML Catalog  点击Add添加  如下图:

如下图:在弹出框中  location:中找到 本地的dubbo.xsd 文件 。如图三,

                                  key:添加dubbo配置引用的地址。如图四,

图三:

解压dubbo.jar 包 。找到dubbo.xsd  。copy 放到 一个文件夹 中(随意放,方便图二location设置)。。我是放到了d:\xsd文件夹

图四: key 设置的值要和配置文件中的一样。

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
如果你的dubbo配置文件yml不生效,可能存在以下几种情况: 1. 配置文件名称不正确:dubbo默认会读取名为dubbo.properties或dubbo.xml配置文件,如果你使用的是yml格式的配置文件,则需要在启动类上添加@PropertySource注解指定配置文件的名称和路径,例如: ```java @SpringBootApplication @PropertySource("classpath:dubbo.yml") public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } ``` 2. 配置文件格式错误:dubbo.yml格式有严格的语法规范,如果格式不正确,dubbo就无法读取配置信息。可以使用在线工具进行格式检查,例如:http://www.yamllint.com/ 3. 配置文件位置错误:yml文件需要放在resources目录下,且需要按照dubbo配置规则进行配置。可以参考官方文档:http://dubbo.apache.org/zh-cn/docs/user/references/yaml/configuration.html 4. 项目存在多个配置文件:如果你的项目存在多个配置文件dubbo会按照默认规则读取第一个配置文件,如果第一个配置文件没有dubbo相关的配置信息,就无法生效。可以通过在启动类上添加@ImportResource注解指定要读取的配置文件,例如: ```java @SpringBootApplication @ImportResource("classpath:dubbo.xml") public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } ``` 以上是一些可能导致dubbo配置文件yml不生效的原因,你可以根据实际情况进行排查和解决。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值