私が使おうとしている人
{
from("direct:a").to (someUrl).processor(new Processor(){
@Override
public void process(Exchange arg0) throws Exception
{
// do something
}
});
where someUrl is of the type http://xyz.com/{id}?test=<value1>&test1=<value2>
}
この URL は、ルートへのリクエストごとに変更されます。
私がすでに試したこと。パラメータをヘッダーとして渡し、header("test") と ${in.header.test} を使用してルートにアクセスしようとすると、両方とも機能しないようです。
どんな提案も非常に役に立ちます。