带有XSLT 2.0和xsl的骆驼:结果文档将文件保留在路由目标中

时间:2019-03-14 16:52:53

标签: xslt apache-camel saxon

我正在尝试使用XSLT 2.0转换将XML文件根据项目组拆分为较小的文件。为了执行转换,我使用了骆驼路线。我的问题是,运行xslt转换时,生成的文件保存在路由“外部”。

例如,给定以下骆驼路线:

from("{{input.endpoint}}")
.to("xslt:xslts/ics/MappingMapTostudents.xslt?saxon=true")
.to("{{output.endpoint}}");

我希望生成的xml文件将在{output.endpoint}文件夹中创建。不幸的是,萨克森将文件保存在可执行文件(骆驼应用程序)所在的根文件夹中。如何将文件保存到{{output.endpoint}}或更高版本,并传递到以下端点?

下面是一个XML示例:

<?xml version="1.0" encoding="UTF-8"?>
<class> 
    <students>
        <student>
            <firstname>Albert</firstname> 
            <group>A</group>
        </student> 
        <student> 
            <firstname>Isaac</firstname> 
            <group>A</group>
        </student> 
        <student> 
            <firstname>Leonardo</firstname> 
            <group>B</group>
        </student> 
        <student>
            <firstname>Enrico</firstname> 
            <group>B</group>
        </student> 
        <student> 
            <firstname>Marie</firstname> 
            <group>C</group>
        </student> 
        <student> 
            <firstname>Rosalind</firstname> 
            <group>C</group>
        </student>
        <student> 
            <firstname>Ada</firstname> 
            <group>D</group>
        </student>
    </students>
</class>

XSLT转换:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:grp="http://www.altova.com/Mapforce/grouping" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions" exclude-result-prefixes="grp xs fn">
    <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
    <xsl:function name="grp:var2_function">
        <xsl:param name="var1_param" as="node()"/>
        <xsl:for-each select="$var1_param/student">
            <xsl:sequence select="fn:string(group)"/>
        </xsl:for-each>
    </xsl:function>
    <xsl:template match="/">
        <xsl:for-each-group select="class/students" group-by="grp:var2_function(.)">
            <xsl:variable name="var3_resultof_grouping_key" as="xs:string" select="current-grouping-key()"/>
            <xsl:result-document href="{fn:concat($var3_resultof_grouping_key, '.xml ')}" encoding="UTF-8">
                <class>
                    <xsl:for-each select="(current-group()/student)[(fn:string(group) = $var3_resultof_grouping_key)]">
                        <students>
                            <student>
                                <firstname>
                                    <xsl:sequence select="fn:string(firstname)"/>
                                </firstname>
                                <group>
                                    <xsl:sequence select="$var3_resultof_grouping_key"/>
                                </group>
                            </student>
                        </students>
                    </xsl:for-each>
                </class>
            </xsl:result-document>
        </xsl:for-each-group>
    </xsl:template>
</xsl:stylesheet>

2 个答案:

答案 0 :(得分:0)

我对Apache-Camel知之甚少,不幸的是,关于StackOverflow技术的问题似乎没有很高的成功率。

http://camel.apache.org/xslt.html上的文档没有提供关于如何设置基本输出URI的任何线索,Saxon使用它来解析出现在xsl:result-document/@href中的任何相对URI。

想到的最简单的方法是将参数传递给转换,其值是输出目录的绝对路径:

<xsl:param name="outDir" as="xs:string"/>
...
<xsl:result-document 
   href="file:///{$outDir}{$var3_resultof_grouping_key}.xml"/>

但是知道Apache Camel的人也许可以提出更优雅的解决方案。

答案 1 :(得分:0)

您可以尝试强制输出“文件”类型。

searchFunction

然后,按照文档说明,您必须在Camel标头中填充所需的目标文件路径:

  

对于文件,您必须使用键在IN标头中指定文件名   Exchange.XSLT_FILE_NAME也是CamelXsltFileName。另外,必须事先创建任何指向文件名的路径,否则将在运行时引发异常。

祝你好运