Apache Camel Splitter includeTokens不工作

时间:2018-06-12 22:56:56

标签: apache-camel

我有以下路线:

<route id="file">
    <from uri="..."/>

    <split streaming="true" stopOnException="true" shareUnitOfWork="true" parallelProcessing="true">
            <tokenize token="\r\n0100|\r\n0500|\r\n0600|\r\n1500|\r\n1600|\r\n2500|\r\n2600|\r\n3500|\r\n3600|\r\n4500" includeTokens="true" />

            ...Process...

            <to ..../>

    </split>
</route>

但是,行不会使用其令牌“进入”拆分器。 includeTokens有效吗?我读到includeTokens对正则表达式不起作用,但这被认为是正则表达式吗?

0 个答案:

没有答案