我要创建ID
在我的Java代码中使用域UUID
。我需要从我的Book
类创建 xml 并根据XSD
下面的内容对其进行验证。
我的XSD
看起来像这样
<xsd:complexType name="Book" >
<xsd:sequence>
<xsd:element name="Publisher" type="ns:PublisherType"/>
<xsd:element name="MessageId" type="ns:GUID"/>
<xsd:element name="Author" type="xsd:string"/>
<xsd:element name="Title" type="xsd:string"/>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"
namespace="##other"/>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name="GUID">
<xsd:restriction base="xsd:string">
<xsd:pattern value="[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}"/>
</xsd:restriction>
</xsd:simpleType>
我的Java类如下
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement
@XmlType(name="Book", propOrder = {"publisher", "messageId", "author", "title"
})
@Getter
@Setter
public class Book {
private Publisher publisher;
private GUID messageId;
private String author;
private String title;
}
我应该如何实现我的GUID
类以返回UUID.randomUUID()
或其他任何方式来传递XSD
?
答案 0 :(得分:1)
看看this example,基本上,您必须用@XmlValue
注释返回xml值的方法
public class GUID {
private final UUID uuid;
public GUID() {
this.uuid = UUID.randomUUID();
}
@XmlValue
public String getValue(){
return uuid.toString();
}
}