2

我正在使用包中的注释javax.xml.bind.annotation来构造 SKOS XML 文件。我对实现以下行的最佳方法有些麻烦(请注意文件rdf中已设置前缀package-info.java):

<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme" />

目前,我通过定义一个类并向类添加一个属性来做到这一点,例如

@XmlRootElement(name = "type")
@XmlAccessorType(XmlAccessType.FIELD)
class Type{
  @XmlAttribute(name="rdf:resource")
  protected final String res="http://www.w3.org/2004/02/skos/core#ConceptScheme";              
}

然后我在要序列化的类中创建一个字段,例如

@XmlElement(name="type")
private Type type = new Type();

这是唯一的方法还是我可以通过使用更紧凑的方法来节省时间?

4

1 回答 1

2

您可以执行以下操作:

Java 模型

类型

JAXB 从类和包派生默认名称,因此如果名称与默认名称不同,您只需指定一个名称。此外,您不应将前缀作为名称的一部分,

package forum21674070;

import javax.xml.bind.annotation.*;

@XmlRootElement
public class Type {

      @XmlAttribute
      protected final String res="http://www.w3.org/2004/02/skos/core#ConceptScheme";

}

包信息

@XmlSchema注释用于指定命名空间限定。不保证使用@XmlNs来指定前缀会导致在编组的 XML 中使用该前缀,但 JAXB impls 倾向于这样做(请参阅: http ://blog.bdoughan.com/2011/11/jaxb-and-命名空间前缀.html)。

@XmlSchema(
        namespace="http://www.w3.org/2004/02/skos/core#ConceptScheme",
        elementFormDefault = XmlNsForm.QUALIFIED,
        attributeFormDefault = XmlNsForm.QUALIFIED,
        xmlns={
                @XmlNs(prefix="rdf", namespaceURI="http://www.w3.org/2004/02/skos/core#ConceptScheme")
        }
)
package forum21674070;

import javax.xml.bind.annotation.*;

演示代码

演示

package forum21674070;

import javax.xml.bind.*;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Type.class);

        Type type = new Type();

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(type, System.out);
    }

}

输出

<?xml version="1.0" encoding="UTF-8"?>
<rdf:type xmlns:rdf="http://www.w3.org/2004/02/skos/core#ConceptScheme" rdf:res="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
于 2014-02-10T14:25:48.330 回答