我有一个Camel路由器,定义了以下路由:
from(route).routeId("route1")
.bean(myBean)
.setHeader(Exchange.HTTP_METHOD, constant("GET"))
.to("log:get-data-request?level=INFO&ShowHeaders=false&ShowBody=true")
.to(myURI)
.to("log:get-data-response?level=INFO&ShowHeaders=false&ShowBody=true")
是否可以为此路由添加超时,以便如果myURI的回复时间超过10秒,则会引发某种异常?
目前,如果没有立即响应,我的应用程序似乎挂起请求等待。
答案 0 :(得分:0)
您能指定哪种端点 toUri ?
[1] http://camel.apache.org/http.html [2] http://camel.apache.org/async.html