How to create a generic XSD type(如何创建通用 XSD 类型)
问题描述
我有一个 java 应用程序,我可以将一个 XSD 类型映射到另一个具有相同类型的类型.现在我需要有一个 anyType xsd,我可以将任何类型映射到该 xsd.就像我们在 java 中有 Object 类型一样,是否可以像在 XSD 中一样创建.
I have a java application where i can map a XSD type to another with same type. Now i have requirement to have one anyType xsd to which i can map any type. Like as we have Object type in java, is it possible to create like in XSD.
在复杂类型级别是可能的.
At complex type level is it possible.
推荐答案
是的,有可能.类型是 xsd:anyType
.这是一个例子:
Yes, it's possible. The type is xsd:anyType
. Here's an example:
<xsd:element name="anything" type="xsd:anyType"/>
(取自primer)
这里有一个更复杂的例子:
Here's a more complex example:
<xsd:complexType>
<xsd:complexContent>
<xsd:restriction base="xsd:anyType">
<xsd:attribute name="currency" type="xsd:string"/>
<xsd:attribute name="value" type="xsd:decimal"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
(同样来自入门书——值得一看)
(From the primer as well - it's worth looking at at it)
这篇关于如何创建通用 XSD 类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何创建通用 XSD 类型
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 降序排序:Java Map 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01