当前位置: 首页 > 知识库问答 >
问题:

使用JAXB在XSD中封送混合类型数据

沈自珍
2023-03-14

我有一个由第三方供应商提供的XSD文件。我需要解析该XSD文件并生成Java对象。我使用JAXB通过maven插件解析XSD文件。

一切都很顺利,直到我最近要求使用来自正在解析的XML中的一个标记的数据。标记的complexType具有mixed=true,因此JAXB生成的java类如下所示。

XSD复杂类型:

<xs:complexType name="Object_Data">
    <xs:sequence>
        <xs:element name="GeneralRemarks" type="GeneralRemarks" minOccurs="0" maxOccurs="1">
            <xs:annotation>
                <xs:documentation>General remarks</xs:documentation>
            </xs:annotation>
        </xs:element>
    </xs:sequence>
</xs:complexType>
<xs:complexType name="GeneralRemarks" mixed="true">
    <xs:sequence>
        <xs:element name="GeneralRemark" type ="GeneralRemark" maxOccurs="unbounded"/>
    </xs:sequence>
</xs:complexType>
<xs:complexType name="GeneralRemark" mixed="true">
    <xs:sequence>
        <xs:element name="GeneralRemark_RemarkQualifier" type="GeneralRemark_RemarkQualifier" minOccurs="1" maxOccurs="1"/>
        <xs:element name="GeneralRemark_RemarkText" type="xs:string" minOccurs="1" maxOccurs="1"/>
    </xs:sequence>
</xs:complexType>

生成的JAXB类

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlMixed;
import javax.xml.bind.annotation.XmlType;
/**
 * <p>Java class for GeneralRemarks complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="GeneralRemarks">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="GeneralRemark" type="{}GeneralRemark" maxOccurs="unbounded"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GeneralRemarks", propOrder = {
    "content"
})
public class GeneralRemarks {

    @XmlElementRef(name = "GeneralRemark", type = JAXBElement.class)
    @XmlMixed
    protected List<Serializable> content;

    /**
     * Gets the value of the content property.
     * 
     * <p>
     * This accessor method returns a reference to the live list,
     * not a snapshot. Therefore any modification you make to the
     * returned list will be present inside the JAXB object.
     * This is why there is not a <CODE>set</CODE> method for the content property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getContent().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link String }
     * {@link JAXBElement }{@code <}{@link GeneralRemark }{@code >}
     * 
     * 
     */
    public List<Serializable> getContent() {
        if (content == null) {
            content = new ArrayList<Serializable>();
        }
        return this.content;
    }
}

GeneralRemark>类不包含List ,而是包含List

关于如何从list 中提取数据,我已经搜索了很多,并找到了使用下面的代码提取数据的解决方案。

GeneralRemarks remarks = xmlObject.getGeneralRemarks();
for(int i=0;i<remarks.getContent().size();i++){
  if(remarks.getContent().get(i) instanceof JAXBElement<?>){
    JAXBElement j = (JAXBElement)remarks.getContent().get(i);
    org.w3c.dom.Element el = (org.w3c.dom.Element) j.getValue();
    System.out.println("TEXT--"+el.getTextContent());
    System.out.println("TAG--"+el.getTagName());
    System.out.println("CHILD --"+el.getElementsByTagName("GeneralRemark_RemarkQualifier").item(0).getTextContent());
  }

}

我想知道是否可以以某种方式重写智利xsd或绑定文件(.xjc)中的ComplexType,以重新定义ComplexType,或者以某种方式将混合属性值更改为false,以便生成正确的类。

我尝试在XSD中使用extend/restrict。我还尝试创建一个自定义类型,并扩展具有GeneralRemarks类型元素的parentXML节点,以便在子xsd中使用我的自定义复杂类型,但所有这些都没有奏效。

我已经尝试了很多谷歌,但没有找到任何解决方案与此查询相关。大多数链接建议只使用extend/restrict,但它们都不起作用

请建议是否有任何解决方案以某种方式重写复杂类型。

共有1个答案

鲍永春
2023-03-14

您可以使用jaxb2-simplifiel插件,特别是simplifiel:as-element-property扩展来生成像您描述的那样的对象。但是,如果您不使用maven,那么将插件作为xjc命令行的扩展执行似乎并不实用,所以我尝试使用maven代替,如图所示

 类似资料:
  • 我正在构建一系列链接类,我希望这些类的实例能够整理成XML,这样我就可以将它们保存到一个文件中,以后再读进去。 目前我使用以下代码作为测试用例: XML输出为: 元素为空有什么原因吗?我希望它包含日期的字符串表示(即)。为了做到这一点,我需要编写一些我自己的代码吗? 的输出是:

  • 当我整理来自JAXB生成的xsi模式类的XML时,根节点缺少xmlns:xsi信息,如下所示。关于如何在我整理的XML中获取名称空间信息,有什么想法吗? 当前马歇尔结果: 期望的马歇尔结果: 我的架构(它的示例部分): ……

  • 问题内容: 我正在尝试找到一种方法来以最少的工作量完成xsd模式到数据存储往返。 我使用jaxb从架构中构建对象模型,现在我想基于JPA(或JDO或其他东西?)存储这些对象。是否有可能基于JAXB注释自动增强缺少注释的对象?是可取的吗? 谢谢 问题答案: 对于此用例,您有几种选择。 选项#1-Hyperjaxb3 我自己没有使用过,但是Hyperjaxb3应该在模型上生成JAXB和JPA批注: h

  • 我有一个问题,我使用一个模式xsd和XJC生成了类。运行封送操作时,会出现以下错误: xsd代码的部分是: 并运行项目,我有这个错误。为什么?请帮帮我.谢谢

  • 我有一个问题,我使用模式xsd和XJC生成了类。当我运行封送操作时,我会得到以下错误: xsd代码的一部分是: 创建FormattedText对象时: 并运行该项目,我有这个错误。为什么?请帮帮我.谢谢

  • 如何告诉JAXB将给定的XML完全解封到对象中?