我必须在路线中运行一个循环。我的路线看起来像
<camel:loop>
<camel:constant>${property.x}</camel:constant>
</camel:loop>
我的处理器看起来像
Date date = new Date();
this.LOGGER
.info("\n****WELCOME TO THE REQUEST OF CHECK PROCESSOR**");
int y=4;
Integer a=new Integer(y);
exchange.setProperty(x,a);
int k=(Integer) exchange.getProperty(x);
this.LOGGER
.info("\n***WELCOME TO THE REQUEST OF CHECK PROCESSOR ENDINGGGGGGGG***"+"a= "+a+" Y= "+y+" x= "+exchange.getProperty(x)+" k= "+k);
在运行此值时x = 4.我想在camel路由XML文件中访问此x。
答案 0 :(得分:0)
一个好主意是花一点时间在Camel网站上找到你的要求。请参阅exchangeProperty
:http://camel.apache.org/exchangeproperty.html
答案 1 :(得分:0)
您必须使用简单语言而不是常量,正确的语法是${properties:x}