1

我有个问题。我想将两个 XML 文件的上下文合二为一。这在 MAVEN 项目 (POM) 和 XSL 中的 xslt-generator-maven-plugin 的帮助下。

我的 pom 配置如下:

<plugin>
<groupId>net.sf.xsltmp</groupId>
<artifactId>xslt-generator-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>transform-contex</id>
<goals>
<goal>many-to-one</goal>
</goals>
<configuration>
<srcDir>src/main/webapp/META-INF/</srcDir>
<srcIncludes>**/*context.xml</srcIncludes>
<xslTemplate>src/main/webapp/Temp.xsl</xslTemplate>
<destFile>${project.build.directory}/contextNEW.xml</destFile>
</configuration>
</execution>
</executions>
</plugin>

我有第一个文件,例如:

<?xml version="1.0" encoding="UTF-8"?>
<Context debug="0" reloadable="true" >
    <Resourcen name="jdbc/ChiDS"
               auth="Container" 
               type="javax.sql.DataSource"
               ...
</Context>

第二个喜欢:

<?xml version="1.0" encoding="UTF-8"?>
 <Context>
    <Realm className="org.apache.catalina.realm.MemoryRealm"
           pathname="webapps/${application.name}/WEB-INF/users.xml"/>
 </Context>

并想得到:

<?xml version="1.0" encoding="UTF-8"?>
<Context debug="0" reloadable="true" >  
<Resourcen name="jdbc/ChiDS"
               auth="Container" 
               type="javax.sql.DataSource"
               ...
<Realm className="org.apache.catalina.realm.MemoryRealm"
       pathname="webapps/${application.name}/WEB-INF/users.xml"/> 
</Context>

所以我会将第二个 XML 附加到第一个。我需要创建一个正确的 TEMP.xsl 文件。

我“需要”使用以下内容:

  • xslt-生成器-maven-插件

我试过这个,但标记化是一个问题。

<xsl:output method="xml" indent="yes"/>

<xsl:param name="source-file-names" />
<xsl:variable name="names-sequence" select="tokenize($source-file-names,'\|')" />
<xsl:variable name="cfg-files" select="document($names-sequence)" />

有什么线索吗?我已经尝试了几件事,但没有解决这个问题。

感谢帮助。

我已尝试使用此 XSL(我修复了令牌问题)但没有成功:

<xsl:output method="xml" indent="yes"/>

<xsl:param name="source-file-names" />
<xsl:variable name="names-sequence" select="fn:tokenize($source-file-names,'\|')" />
<xsl:variable name="cfg-files" select="document($names-sequence)" />

<xsl:template match="/">
    <xsl:copy>
        <xsl:apply-templates select="$cfg-files/*"/>
    </xsl:copy>
</xsl:template>

我看过这个样本:https ://github.com/ivos/xslt-generator-maven-plugin/issues/1 但我这边没有成功。

欢迎任何帮助。:)

4

2 回答 2

0

您可以在此处查看我的示例,其中我使用 xslt 可变文档加载组合了两个 xml 文件。你可以在这里找到它:Transform XML with multiple XSL files

于 2013-01-11T12:30:53.640 回答
0

您需要创建第三个 xml 文档,其中包含要加入的其他 xml 文件。
我认为这很有帮助:http ://www.ibm.com/developerworks/library/x-tipcombxslt/

于 2013-01-10T13:32:45.257 回答