我有一个大致像这样的xml文件:

<batch>
    <header>
        <headerStuff />
    </header>
    <contents>
        <timestamp />
        <invoices>
            <invoice>
                <invoiceStuff />
            </invoice>
            <!-- Insert 1000 invoice elements here -->
        </invoices>
    </contents>
</batch>


我想使用相同的headerStuff和仅一张发票将该文件拆分为1000个文件。 Smooks文档为转换的可能性感到非常自豪,但不幸的是,我不想这样做。

我想出办法的唯一方法是在freemarker中重复整个结构。但这就像不必要地重复该结构。标头有30个不同的标签,因此也会涉及很多工作。

我目前所拥有的是:

<?xml version="1.0" encoding="UTF-8"?>
<smooks-resource-list xmlns="http://www.milyn.org/xsd/smooks-1.1.xsd"
    xmlns:calc="http://www.milyn.org/xsd/smooks/calc-1.1.xsd"
    xmlns:frag="http://www.milyn.org/xsd/smooks/fragment-routing-1.2.xsd"
    xmlns:file="http://www.milyn.org/xsd/smooks/file-routing-1.1.xsd">

    <params>
        <param name="stream.filter.type">SAX</param>
    </params>

    <frag:serialize fragment="INVOICE" bindTo="invoiceBean" />

    <calc:counter countOnElement="INVOICE" beanId="split_calc" start="1" />

    <file:outputStream openOnElement="INVOICE" resourceName="invoiceSplitStream">
        <file:fileNamePattern>invoice-${split_calc}.xml</file:fileNamePattern>
        <file:destinationDirectoryPattern>target/invoices</file:destinationDirectoryPattern>
        <file:highWaterMark mark="10"/>
    </file:outputStream>

    <resource-config selector="INVOICE">
        <resource>org.milyn.routing.io.OutputStreamRouter</resource>
        <param name="beanId">invoiceBean</param>
        <param name="resourceName">invoiceSplitStream</param>
        <param name="visitAfter">true</param>
    </resource-config>

</smooks-resource-list>


这会为每个发票标签创建文件,但是我不知道如何从那里继续在文件中获取标题。

编辑:

解决方案必须使用Smooks。我们在应用程序中将其用作通用拆分器,只是为不同类型的输入文件创建不同的smooks配置文件。

最佳答案

我刚开始自己​​是Smooks。但是...您的问题听起来与此相同:http://www.smooks.org/mediawiki/index.php?title=V1.5:Smooks_v1.5_User_Guide#Routing_to_File

您将必须提供完整的输出FTL格式,这是使用通用工具的缺点。数据映射通常包括许多感觉上的冗余,一种解决方法是利用约定,但必须将其内置到框架中。

10-08 09:35