English 中文(简体)
将 DTD 转换为 XSD, 包含定义的 root( 启动) 元素
原标题:Convert DTD to XSD with defined root (starting) element

我有多个大型 DTD 文件。 我曾经使用 < a href=" http://www.thaiopensource.com/relaxeng/trang.html" > trang 将文件转换为 XSD 文件, 这样我就可以很容易地从 JAXB 和其他公共事业中使用它。 但是, 生成的 XSD 文件在顶层都声明了元素 。 这意味着任何元素都可能是输入 XML 的根元素 。 我想只指定一个特定元素 。

这些多重根源元素引起一些问题,例如, xjc 为所有类别生成,所以我需要添加更多的检查。

据我理解,我需要重写生成的 XSD, 将 lt; xs: element> 移动到 lt;xs: complexType> , 将 element ref 转换为 element type 等, 但是这将会是太多的猴子工作, 无法验证是否全部完成正确 。

是否有更有效的办法做到这一点?

最佳回答

我用简单的 XSLT 变形处理生成的 XSD。

<?xml version="1.0"?>

<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:xs="http://www.w3.org/2001/XMLSchema"
        >
    <xsl:template match="@*|node()|comment()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()|comment()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="xs:element/@ref"/>
    <xsl:template match="xs:element[@ref]">
        <xsl:copy>
            <xsl:apply-templates select="@*"/>
            <xsl:attribute name="type"><xsl:value-of select="@ref"/></xsl:attribute>
            <xsl:attribute name="name"><xsl:value-of select="@ref"/></xsl:attribute>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="xs:element[@name = //xs:element/@ref and xs:complexType]">
        <xs:complexType name="{@name}">
            <xsl:apply-templates select="xs:complexType/node()"/>
        </xs:complexType>
    </xsl:template>
    <xsl:template match="xs:element[@name = //xs:element/@ref and @type]">
        <xsl:choose>
            <xsl:when test="//xs:complexType[@name = current()/@type]">
                <xs:complexType name="{@name}">
                    <xs:complexContent>
                        <xs:extension base="{@type}"/>
                    </xs:complexContent>
                </xs:complexType>
            </xsl:when>
            <xsl:otherwise>
                <xs:simpleType name="{@name}">
                    <xs:restriction base="{@type}"/>
                </xs:simpleType>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>

它检测到引用的元素定义,并使它们comptexType, 更改参考。所有未引用的元素都成为起始元素。

问题回答

从你所描述的,而忽略了某些评论中所指出的转换的“忠诚”,我所处理的只是,你只是在寻找某种(我所说的)自动方式XML Schema Refictoring 。我与





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...