zoukankan      html  css  js  c++  java
  • xml bug之cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration...

    1.今天重装了一下MyEclipse7.5,打开原来的Flex项目,又报了以下两个错误,之前解决过,但不想又出现,于是把它的解决方法贴出来,做个备忘!

          错误信息为

    错误信息 写道
    cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'flex:message-broker'.

    cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'flex:remoting-destination'.

        问题根源在于Eclipse无法识别上面的两个标签,解决之道为:

    添加这俩标签的xsd文件,具体百度add catalorg xml。

    2.spring整合dubbo时,xml配置文件也遇到过这种情况。

    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:reference的定义等等。

    废话少说直接上解决方案:

    下载一个dubbo.xsd文件windows->preferrence->xml->xmlcatalog 

    add->catalog entry  ->file system 选择刚刚下载的文件路径

    修改key值和配置文件的http://code.alibabatech.com/schema/dubbo/dubbo.xsd 相同

    保存。。在xml文件右键validate  ok解决了。

    有的同学反映,那个xsd文件不好找,其实没有啦 ,就在你下载的dubbo.jar里面,你把它解压了,仔细找找,就会发现的,祝成功!!!

  • 相关阅读:
    Pytorch学习(一)基础语法篇
    CSAPP深入理解计算机系统(第二版)第三章家庭作业答案
    理解DP(持续更新)
    LeetCode题解 | 215. 数组中的第K个最大元素
    快速排序
    浅谈设计模式(java)——从lol来看观察者模式
    <小虾米的android学习之旅1>Android框架
    程序员如何用技术变现?
    为了反击爬虫,前端工程师的脑洞可以有多大?
    如何成为一名爬虫工程师?(顺带提供工作机会)
  • 原文地址:https://www.cnblogs.com/panxuejun/p/6102006.html
Copyright © 2011-2022 走看看