0
我需要能夠輪詢Rest WebService,並將其作爲來自WebService的最後一個響應的ID中該呼叫的一部分。我知道要在Camel中使用動態端點,你需要使用一個Enrich處理器,但是我無法獲得更新。Apache Camel動態Http調用
請考慮下面的簡單情況:
public class MyRoute extends RouteBuilder {
long id;
@Override
public void configure() throws Exception {
from("timer://foo?fixedRate=true&period=3000")
.enrich().simple("http://localhost:8080/TestRestSource/test/result/" + id)
.process(new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
id++;
System.out.println("--- " + id);
}
})
.end();
}
}
我使用駱駝2.16。
任何幫助,將不勝感激。
由於提前,
克里斯
那麼,你會得到什麼錯誤? –