您可以在使用@XmlElementDecl
注释的类上使用注释@XmlRegistry
。
对象工厂
当@XmlElementDecl
一个类型有多个与之对应的全局元素时使用注解。注释放置在create
用 注释的类的方法上@XmlRegistry
。当从 XML 模式生成模型时,总是调用这个类ObjectFactory
。
package forum14845035;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.*;
import javax.xml.namespace.QName;
@XmlRegistry
public class ObjectFactory {
@XmlElementDecl(name="root1")
public JAXBElement<SameType> createRoot1(SameType sameType) {
return new JAXBElement<SameType>(new QName("urn:example", "root1"), SameType.class, sameType);
}
@XmlElementDecl(name="root2")
public JAXBElement<SameType> createRoot2(SameType sameType) {
return new JAXBElement<SameType>(new QName("urn:example", "root2"), SameType.class, sameType);
}
}
同类型
在这个用例中,域类不需要注释。
package forum14845035;
public class SameType {
}
包信息
我们将利用包级别的@XmlSchema
注释来为我们的模型指定命名空间限定。
@XmlSchema(namespace="urn:example", elementFormDefault=XmlNsForm.QUALIFIED)
package forum14845035;
import javax.xml.bind.annotation.*;
演示
package forum14845035;
import java.io.IOException;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.SchemaOutputResolver;
import javax.xml.transform.Result;
import javax.xml.transform.stream.StreamResult;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(SameType.class, ObjectFactory.class);
jc.generateSchema(new SchemaOutputResolver() {
@Override
public Result createOutput(String namespaceUri,
String suggestedFileName) throws IOException {
StreamResult result = new StreamResult(System.out);
result.setSystemId(suggestedFileName);
return result;
}
});
}
}
输出
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema elementFormDefault="qualified" version="1.0" targetNamespace="urn:example" xmlns:tns="urn:example" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root1" type="tns:sameType"/>
<xs:element name="root2" type="tns:sameType"/>
<xs:complexType name="sameType">
<xs:sequence/>
</xs:complexType>
</xs:schema>
了解更多信息