Camel中BeanIO的动态映射

时间:2015-08-21 08:00:57

标签: apache-camel bean-io

我想实现以下目标:

from("direct:dataload")                 
                .beanRef("headerUpdater")
                .log("Log: " + simple("${in.header.contentType}").getText())                    
                //.unmarshal().beanio(simple("${in.header.contentType}").getText(), "content")
                .unmarshal(new BeanIODataFormat(
                        "file://C://Users//admr229//Documents//mappings.xml", "clients"))
                .to("bean:headerFooterValidator")
                .split(body())
                .process(dataValidator).choice()
                .when(header("error").isNotNull())
                .to("seda:saveErrorsForReport").otherwise()
                .to("seda:updateLive")
                .end();

我已经注释掉了我无法做出的界限。我想从先前端点的输出传递动态值以初始化beanio。 我唯一能想到的是使用收件人列表,它将动态选择预定义的端点。因为,就我而言,该端点将使用beanio解组,这与“activemq:queue:test”不同,后者纯粹是文本。 我希望我的问题清楚。如果您需要任何进一步的细节,请告诉我。 我使用的是camel 2.15.2

2 个答案:

答案 0 :(得分:2)

您可以使用数据格式组件[1],您可以在其中指定beanio作为数据格式,并构建uri动态[2]

[1] - http://camel.apache.org/dataformat-component.html

[2] - http://camel.apache.org/how-to-use-a-dynamic-uri-in-to.html

答案 1 :(得分:0)

你可以使用这样的东西,但是,我认为这不是动态的,因为它需要在创建上下文之前设置属性。

.unmarshal()。beanio(mapping,streamName)