如何强迫Bindy总是返回List?

时间:2018-03-05 09:15:19

标签: java apache-camel bindy

我有以下路线:

from("direct:abc")
        // read the file  
        .split(body().tokenize("\n", 3, false)).streaming().stopOnException()
        .unmarshal(new BindyCsvDataFormat(Foo.class))
        .process(new FooListProcessor());

问题在于,如果我在文件中有4条记录,则第一组处理器为List,而第二组作为单个Foo对象。 我必须使用instanceof检查身体,并在每次发生此类情况时创建一个列表。

Foo上课:

@CsvRecord(separator = ",")
public class Foo {
   @DataField(pos = 1)
   private String fooField;
   @DataField(pos = 2, trim = true)
   private String barField;
}

文件内容:

"lorem","ipsum"
"dolorem","sit"
"consectetur","adipiscing"
"eiusmod","incididunt"

有没有办法强制Bindy始终取消联合List

2 个答案:

答案 0 :(得分:1)

如果有单个实例,则没有bindy返回单个实例。还有更多的清单。

我已经记录了一张改进的票证,因此您可以对其进行配置:https://issues.apache.org/jira/browse/CAMEL-12321

答案 1 :(得分:1)

只是一点点。因为它不受支持,因为@Claus说,而不是你做处理器代码检查的实例,你也可以在这样的路线中做它,让骆驼为你处理它。

  from("file:///tmp/camel/input")
            // read the file
            .split(body().tokenize("\n", 3, false)).streaming().stopOnException()
            .unmarshal(new BindyCsvDataFormat(Foo.class))
            .choice()
            .when(body().isInstanceOf(List.class))
                .process(exchange -> { // Your logic here for list})
            .otherwise()
                .process(exchange -> {// Your logic here for individual items})
            .endChoice();