我有一个像这样的xslt:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:db="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:output method="xml" indent="yes" />
<xsl:template match="/">
<xsl:for-each select="db:databaseChangeLog/db:changeSet">
<xsl:if test="name(*[1])='createTable'">
<xsl:result-document href="base/tables/{position()}_{name(*[1])}_{*[1]/@tableName}.xml">
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<xsl:copy-of select="."/>
<xsl:copy-of select="../db:changeSet[name(*[1])='createIndex' and *[1]/@tableName= current()/*[1]/@tableName ]" />
</databaseChangeLog>
</xsl:result-document>
</xsl:if>
</xsl:for-each>
</xsl:template>
<xsl:template match="@* | node()" mode="copy">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="db:changeSet/@author" mode="copy">
<xsl:attribute name="author">
<xsl:value-of select="'sakhunzai'"/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
<changeSet author="xxx (generated)" id="1358259674512-26">
<createIndex indexName="category_id" tableName="teams" unique="false">
<column name="audience_id"/>
</createIndex>
</changeSet>
<changeSet author="xxx (generated)" id="1358259674512-29">
<createIndex indexName="id" tableName="users" unique="false">
<column name="id"/>
<column name="career_lead_id"/>
</createIndex>
</changeSet>
我想覆盖changeSet的属性值(author和id)。请帮我修复xslt。
一切正常,但@author atrribute值不是目标xml文件中的更改 注意:由于xsltproc失败,我切换到基于saxon java的处理器,例如
java -jar /usr/local/liquibase/saxon/saxon9he.jar common.xml table.xslt
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:db="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:output method="xml" indent="yes" />
<xsl:template match="/">
<xsl:for-each select="db:databaseChangeLog/db:changeSet[db:createTable]">
<xsl:result-document href="base/tables/{position()}_{name(*[1])}_{*[1]/@tableName}.xml">
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<xsl:apply-templates select="." mode="copy"/>
<xsl:apply-templates select="../db:changeSet[db:createIndex and *[1]/@tableName= current()/*[1]/@tableName ]" mode="copy"/>
</databaseChangeLog>
</xsl:result-document>
</xsl:for-each>
</xsl:template>
<xsl:template match="node()" mode="copy">
<xsl:copy>
<xsl:attribute name="author">sakhunzai</xsl:attribute>
<xsl:copy-of select="@id|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:1)
<xsl:copy-of />
不会导致应用模板。它只是创建一个精确的副本。如何更改此行
<xsl:template match="db:changeSet/@author">
到此:
<xsl:template match="db:changeSet/@author" mode="copy">
添加此模板:
<xsl:template match="@* | node()" mode="copy">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
最后改变了这个:
<xsl:copy-of select="../db:changeSet[name(*[1])='createIndex' and *[1]/@tableName= current()/*[1]/@tableName ]">
<xsl:copy-of select="."/>
</xsl:copy-of>
对此:
<xsl:apply-templates
select=="../db:changeSet[name(*[1])='createIndex' and *[1]/@tableName = current()/*[1]/@tableName]"
mode="copy" />
作为旁注,这看起来有点多余:
<xsl:copy-of select="current()[name()='changeSet']">
<xsl:copy-of select="."/>
</xsl:copy-of>
由于for-each循环,当前节点必须具有名称“changeSet”。我认为这应该足以满足这一部分:
<xsl:copy-of select="." />
完整XSLT:
<xsl:stylesheet xmlns:db="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes" />
<xsl:template match="/">
<xsl:for-each select="db:databaseChangeLog/db:changeSet">
<xsl:if test="name(*[1])='createTable'">
<xsl:document href="base/tables/{position()}_{name(*[1])}_{*[1]/@tableName}.xml">
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<xsl:copy-of select="." />
<xsl:apply-templates select="../db:changeSet[name(*[1])='createIndex' and *[1]/@tableName= current()/*[1]/@tableName ]" mode="copy" />
</databaseChangeLog>
</xsl:document>
</xsl:if>
</xsl:for-each>
</xsl:template>
<xsl:template match="@* | node()" mode="copy">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="db:changeSet/@author" mode="copy">
<xsl:attribute name="author">
<xsl:value-of select="'sakhunzai'"/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
我认为XSLT可以进一步改进,如下所示。如果您愿意,可以尝试一下:
<xsl:stylesheet xmlns:db="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes" />
<xsl:template match="db:changeSet" />
<xsl:template match="db:changeSet[db:createTable]">
<xsl:document href="base/tables/{position()}_{name(*[1])}_{*[1]/@tableName}.xml">
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<xsl:copy-of select="." />
<xsl:apply-templates select="../db:changeSet[db:createIndex and *[1]/@tableName = current()/*[1]/@tableName ]" mode="copy" />
</databaseChangeLog>
</xsl:document>
</xsl:template>
<xsl:template match="@* | node()" mode="copy">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="db:changeSet/@author" mode="copy">
<xsl:attribute name="author">
<xsl:value-of select="'sakhunzai'"/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
答案 1 :(得分:1)
xsl:copy-of元素不允许使用子元素。看起来xsltproc没有仔细验证你的样式表。