我有一个我想要编组的对象,但架构没有@XmlRootElement注释。
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Foo
{
@XmlAttribute(name = "test1")
public final static String TEST_1 = "Foo";
@XmlElement(name = "Element1", required = true)
protected String element1;
@XmlElement(name = "Element2", required = true)
protected String element2;
}
我通过在编组时指定JaxBElement来编组对象
QName qName = new QName("", "Foo");
jaxb2Marshaller.marshal(new JAXBElement(qName, Foo.class, fooObj), new StreamResult(baos));
这在编组后产生以下XML
<Foo xmlns:ns2="http://Foo/bar" test1="Foo">
<ns2:Element1>000000013</ns2:Element1>
<ns2:Element2>12345678900874357</ns2:Element2>
</Foo>
对于我的用例,我想在不使用ns2前缀的情况下使用此对象,以便XML看起来像
<Foo xmlns="http://Foo/bar" test1="Foo">
<Element1>000000013</Element1>
<Element2>12345678900874357</Element2>
</Foo>
如何在没有前缀的情况下编组此对象?
先谢谢。
答案 0 :(得分:1)
首先,您在错误的命名空间中创建Public
元素。查看所需的输出,您还希望Foo
元素位于Foo
命名空间中。要解决此问题,请在创建http://Foo/bar
时指定该命名空间URI,而不是将空字符串作为第一个参数传递:
QName
要删除命名空间生成的// Wrong
QName qName = new QName("", "Foo");
// Right
QName qName = new QName("http://Foo/bar", "Foo");
前缀,需要将命名空间前缀设置为空字符串。您可能有一个带有ns2
注释的package-info.java
文件。它应该是这样的:
@XmlSchema
注意:设置@XmlSchema(namespace = "http://Foo/bar",
elementFormDefault = XmlNsForm.QUALIFIED,
xmlns = @XmlNs(prefix = "", namespaceURI = "http://Foo/bar"))
package com.mycompany.mypackage;
import javax.xml.bind.annotation.XmlNs;
import javax.xml.bind.annotation.XmlNsForm;
import javax.xml.bind.annotation.XmlSchema;
将导致JAXB生成prefix = ""
属性,而不会在XML中生成xmlns
生成的前缀名称。