<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    andyj2ee

    java tec sky

    統計

    留言簿(4)

    activemq

    aop

    design pattern

    other blog

    spring

    workflow

    多線程

    軟件架構師

    閱讀排行榜

    評論排行榜

    使用XMLBeans 進行java 數據梆定

    進入實踐之前,最好找篇文章先了解一下 xmlbeans 是用來做什么的
    參考資料:http://xmlbeans.apache.org/
    參考文章:XML-Java Data Binding Using XMLBeans

    xmlbeans bea 貢獻的一個開源項目,目的是使xml 文件直接轉化為java 對象,對java 對象的操作可直接存為xml 文件,省去了文檔驗證過程。
    實現原理:先定義 xml schema descripter ,編譯定義的 *.xsd 文件,引入編譯后生成的.jar 包。與 xmlbeans-Home\lib\xbean.jar  就可以在開發項目中使用了。

    1. Install XMLBeans.
    2. Compile your schema. Use scomp to compile the schema, generating and jarring Java types. For example, to create a employeeschema.jar from an employeesschema.xsd file:
      scomp -out employeeschema.jar employeeschema.xsd
    3. Write code. With the generated JAR on your classpath, write code to bind an XML instance to the Java types representing your schema. Here's an example that would use types generated from an employees schema:
      File xmlFile = new File("c:\employees.xml"); 
      
      // Bind the instance to the generated XMLBeans types.
      EmployeesDocument empDoc = 
      	EmployeesDocument.Factory.parse(xmlFile); 
      
      // Get and print pieces of the XML instance.
      Employees emps = empDoc.getEmployees(); 
      Employee[] empArray = emps.getEmployeeArray(); 
      for (int i = 0; i < empArray.length; i++) 
      { 
      	System.out.println(empArray[i]); 
      }
    實踐中遇到的問題:
    如何修改編譯shema 產生的java 類的package 目錄結構?


    參考:http://wiki.apache.org/xmlbeans/XmlBeansFaq#configPackageName

    Can I change the default package names for the java classes generated from my schema?

    You can create a file that ends in .xsdconfig to map targetnamespace to packagename. Put the .xsdconfig file in the same directory as the .xsd that you are compiling. Here is an example .xsdconfig:

    <!-- An xsdconfig file must begin with a "config" element in the 
            http://www.bea.com/2002/09/xbean/config namespace. Also, be sure
            to declare any namespaces used to qualify types in your schema (here,
            the namespace corresponding to the pol prefix. -->
    <xb:config xmlns:pol="http://openuri.org/easypoLocal" 
        xmlns:xb="http://www.bea.com/2002/09/xbean/config">
    
        <!-- Use the "namespace" element to map a namespace to the Java package
            name that should be generated. -->
        <xb:namespace uri="http://openuri.org/easypoLocal">
            <xb:package>org.openuri.easypo.xsdconfig</xb:package>
        </xb:namespace>
    
        <!-- Use the "qname" element to map schema type names to generated
            Java type names. In these examples, the name attribute's value is the
            XML element name; the javaname attribute's value is the Java type 
            that should be generated. -->
        <xb:qname name="pol:CUST" javaname="Customer"/>
        <xb:qname name="pol:PURCH_ORDER" javaname="PurchaseOrder"/>
    </xb:config>
    

    Notice that you can also map specific element/attribute names to java names.

    /!\ Note: If schema doesn't include targenamespace then use

    <xb:namespace uri="##any">
      <xb:package>org.openuri.easypo.xsdconfig</xb:package>
    </xb:namespace>
    

    to specify package names

    /!\ Note: XmlBeans doesn’t support using two or more sets of java classes (in different packages) mapped to schema types/elements that have the same names and target namespaces, using all in the same class loader. Depending on the direction you are using for the java classes to schema types mapping, some features might not work correctly. This is because even though the package names for the java classes are different, the schema location for the schema metadata (.xsb files) is the same and contains the corresponding implementing java class, so the JVM will always pick up the first on the classpath. This can be avoided if multiple class loaders are used.


    先看一下 scomp 命令: xmlbeans-home/bin 要加入到path 中,

    scomp 參數圖
    編寫自己的schema文件:weather_latlong.xsd
    <xsd:schema
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:ct
    ="http://beans.jhalo.com"
    targetNamespace
    ="http://beans.jhalo.com"
    elementFormDefault
    ="qualified">
    <!-- This XML Schema describes xml documents
    containing either weather details or latlong
    details of a location based on Zipcode Two Global
    elements Weather and Latlong, and one Global
    Attribute Zipcode are declared.
    -->
     
    <xsd:element name="Weather">
      
    <xsd:complexType>
       
    <xsd:sequence>
        
    <xsd:element name="Temperature"
             type
    ="xsd:float"/>
        
    <xsd:element name="Humidity"
             type
    ="xsd:float"/>
        
    <xsd:element name="Visibility"
             type
    ="xsd:float"/>
        
    <xsd:element name="Datetime"
             type
    ="xsd:dateTime"/>
       
    </xsd:sequence>
      
    <xsd:attribute ref="ct:Zipcode"/>
     
    </xsd:complexType>
     
    </xsd:element>
     
    <xsd:element name="Latlong">
      
    <xsd:complexType>
       
    <xsd:sequence>
        
    <xsd:element name="Latitude"
             type
    ="xsd:string"/>
        
    <xsd:element name="Longitude"
             type
    ="xsd:string"/>
        
    </xsd:sequence>
       
    <xsd:attribute ref="ct:Zipcode"/>
      
    </xsd:complexType>
     
    </xsd:element>
     
    <xsd:attribute name="Zipcode"
             type
    ="xsd:string"/>
    </xsd:schema>


    #


    2
    編寫myconfig.xsdconfig 存放同一目錄


    #
    <xb:config xmlns:xb="http://xml.apache.org/xmlbeans/2004/02/xbean/config"
               xmlns:ct
    ="http://beans.jhalo.com">

      
    <xb:namespace uri="http://beans.jhalo.com http://services.jhalo.com">
        
    <xb:package>org.jhalo</xb:package>
      
    </xb:namespace> 

      
    <xb:namespace uri="##any">
        
    <xb:prefix>Xml</xb:prefix>
        
    <xb:suffix>Bean</xb:suffix>
      
    </xb:namespace>


      
      
    <xb:qname name="ct:Zipcode" javaname="Zip" /> 
      
    <xb:qname name="ct:Datetime" javaname="Today" />


    </xb:config>


    如果不使用myconfig.xsdconfig 進行編譯
    scomp -out weather.jar weather_latlong.xsd 
    生成的 weather.jar 為:com/jhalo/beans/xxxx


    使用 .xsdconfig 編譯
    scomp -out weather.jar weather_latlong.xsd  myconfig.xsdconfig
    生成jar 結構為: org/jhalo/

    在寫測試程序發現, Datetime -->Today 也改變了。
    import org.apache.xmlbeans.*;
    import org.jhalo.XmlLatlongDocumentBean;
    import org.jhalo.XmlWeatherDocumentBean;


    XmlWeatherDocumentBean wdoc;
    XmlWeatherDocumentBean.Weather w;
    wdoc 
    = XmlWeatherDocumentBean.Factory.newInstance();
    = wdoc.addNewWeather();
    w.setToday(Calendar.getInstance());

    完畢.:)~


    方向:分布式系統設計

    posted on 2006-02-14 16:13 java光環 閱讀(1237) 評論(0)  編輯  收藏 所屬分類: xml


    只有注冊用戶登錄后才能發表評論。


    網站導航:
     
    主站蜘蛛池模板: 免费看无码自慰一区二区| 久操视频免费观看| 国产美女在线精品免费观看| 91免费在线视频| 2022中文字字幕久亚洲| 亚洲精品自产拍在线观看动漫| a级毛片免费观看在线| 亚洲精品在线视频| 男人扒开添女人下部免费视频| 久久99国产综合精品免费| 亚洲色成人网一二三区| 日本高清免费中文在线看| 亚洲精品国产成人影院| 一级毛片免费不卡| 亚洲日韩精品无码一区二区三区| 999zyz**站免费毛片| 久久久亚洲精品国产| 亚洲免费电影网站| 亚洲中文字幕无码爆乳| 国产免费怕怕免费视频观看| 一区二区免费国产在线观看 | 亚洲一区综合在线播放| 99久久99久久精品免费观看| 亚洲制服丝袜在线播放| a在线观看免费网址大全| 亚洲综合国产精品| 久久久高清免费视频| 亚洲国产精品久久人人爱| 国产一卡2卡3卡4卡无卡免费视频 国产一卡二卡3卡四卡免费 | 欧美a级成人网站免费| 亚洲人成图片网站| 另类免费视频一区二区在线观看| 亚洲成人免费在线| 麻豆国产精品免费视频| 亚洲日韩国产二区无码| 国产99视频精品免费视频7| 精品亚洲成a人在线观看| 免费观看四虎精品成人| 久久亚洲中文字幕精品一区| 久久精品国产亚洲综合色| 久热免费在线视频|