zoukankan      html  css  js  c++  java
  • 【Dubbo&&Zookeeper】3、Failed to read schema document 'http://code.alibabatech.com/schema/dubbo/dubbo.xsd'问题解决方法

    转自:http://blog.csdn.net/gaoshanliushui2009/article/details/50469595

    我们公司使了阿里的dubbo,但是阿里的开源网站http://code.alibabatech.com,挂掉有好几个月了,为什么我们的应用启动没有问题?

    我们的应用的spring配置文件里有类似的配置:

    [html] view plaincopy
     
     
     
    1. <?xml version="1.0" encoding="UTF-8"?>  
    2. <beans xmlns="http://www.springframework.org/schema/beans"  
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"  
    4.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
    5.             http://www.springframework.org/schema/beans/spring-beans.xsd  
    6.             http://code.alibabatech.com/schema/dubbo  
    7.             http://code.alibabatech.com/schema/dubbo/dubbo.xsd">  

    我们都知道Spring在启动时是要检验XML文件的。或者为什么在Eclipse里xml没有错误提示?

    比如这样的一个Spring配置:

    [html] view plaincopy
     
     
     
    1. <?xml version="1.0" encoding="UTF-8"?>  
    2. <beans xmlns="http://www.springframework.org/schema/beans"  
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    4.     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">  
    5. </beans>  

    我们也可以在后面加上版本号:

    [html] view plaincopy
     
     
     
    1. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">  

    有这个版本号和没有有什么区别呢?

    XML的一些概念

    首先来看下xml的一些概念:

    xml的schema里有namespace,可以给它起个别名。比如常见的spring的namespace:

    [html] view plaincopy
     
     
     
    1. xmlns:mvc="http://www.springframework.org/schema/mvc"  
    2. xmlns:context="http://www.springframework.org/schema/context"  

    通常情况下,namespace对应的URI是一个存放XSD的地址,尽管规范没有这么要求。如果没有提供schemaLocation,那么Spring的XML解析器会从namespace的URI里加载XSD文件。我们可以把配置文件改成这个样子,也是可以正常工作的:

    [html] view plaincopy
     
     
     
    1. <?xml version="1.0" encoding="UTF-8"?>  
    2. <beans xmlns="http://www.springframework.org/schema/beans/spring-beans.xsd"  
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  

    schemaLocation提供了一个xml namespace到对应的XSD文件的一个映射,所以我们可以看到,在xsi:schemaLocation后面配置的字符串都是成对的,前面的是namespace的URI,后面是xsd文件的URI。比如:

    [html] view plaincopy
     
     
     
    1. xsi:schemaLocation="http://www.springframework.org/schema/beans  
    2. http://www.springframework.org/schema/beans/spring-beans.xsd  
    3. http://www.springframework.org/schema/security  
    4. http://www.springframework.org/schema/security/spring-security.xsd"  

    Spring是如何校验XML的

    Spring默认在启动时是要加载XSD文件来验证xml文件的,所以如果有的时候断网了,或者一些开源软件切换域名,那么就很容易碰到应用启动不了。我记得当时Oracle收购Sun公司时,遇到过这个情况。

    为了防止这种情况,Spring提供了一种机制,默认从本地加载XSD文件。打开spring-context-3.2.0.RELEASE.jar,可以看到里面有两个特别的文件:

    spring.handlers

    [plain] view plaincopy
     
     
     
    1. http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler  
    2. http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler  
    3. http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler  
    4. http://www.springframework.org/schema/task=org.springframework.scheduling.config.TaskNamespaceHandler  
    5. http://www.springframework.org/schema/cache=org.springframework.cache.config.CacheNamespaceHandler  

    spring.schemas

    [plain] view plaincopy
     
     
     
    1. http://www.springframework.org/schema/context/spring-context-2.5.xsd=org/springframework/context/config/spring-context-2.5.xsd  
    2. http://www.springframework.org/schema/context/spring-context-3.0.xsd=org/springframework/context/config/spring-context-3.0.xsd  
    3. http://www.springframework.org/schema/context/spring-context-3.1.xsd=org/springframework/context/config/spring-context-3.1.xsd  
    4. http://www.springframework.org/schema/context/spring-context-3.2.xsd=org/springframework/context/config/spring-context-3.2.xsd  
    5. http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-3.2.xsd  
    6. ...  

    再打开jar包里的org/springframework/context/config/ 目录,可以看到下面有

    spring-context-2.5.xsd
    spring-context-3.0.xsd
    spring-context-3.1.xsd
    spring-context-3.2.xsd

    很明显,可以想到Spring是把XSD文件放到本地了,再在spring.schemas里做了一个映射,优先从本地里加载XSD文件。

    并且Spring很贴心,把旧版本的XSD文件也全放了。这样可以防止升级了Spring版本,而配置文件里用的还是旧版本的XSD文件,然后断网了,应用启动不了。

    我们还可以看到,在没有配置版本号时,用的就是当前版本的XSD文件:

    [html] view plaincopy
     
     
     
    1. http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-3.2.xsd  

    同样,我们打开dubbo的jar包,可以在它的spring.schemas文件里看到有这样的配置:

    [html] view plaincopy
     
     
     
    1. http://code.alibabatech.com/schema/dubbo/dubbo.xsd=META-INF/dubbo.xsd  

    所以,Spring在加载dubbo时,会从dubbo的jar里加载dubbo.xsd。

    虽然启动没有问题,但xml验证Failed to read schema document 'http://code.alibabatech.com/schema/dubbo/dubbo.xsd'出错,这个问题如何解决呢?

    可以通过eclipse 手动添加schema文件来解决这个问题,如图:

    配置成功后,右击applicationContext-dubbo.xml选择validate,进行xml重新验证即可。

  • 相关阅读:
    printFinal用法示例
    清瘦的记录者: 一个比dbutils更小巧、好用的的持久化工具
    requestAnimationFrame,Web中写动画的另一种选择
    深入理解定时器系列第二篇——被誉为神器的requestAnimationFrame
    Javascript 多线程?
    Expert 诊断优化系列------------------语句调优三板斧
    Appium+python自动化8-Appium Python API
    Selenium2+python自动化26-js处理内嵌div滚动条
    RobotFramework自动化4-批量操作案例
    RobotFramework自动化3-搜索案例
  • 原文地址:https://www.cnblogs.com/wangzhongqiu/p/6612117.html
Copyright © 2011-2022 走看看