can I able to dynamically intercept the endpoints in camel -
i need dynamically intercept endpoint based on tenant configuration.is there way dynamically intercept endpoint while starting camel context
camel intercept lets this...
intercept().when(body().contains("hello")).to("mock:intercepted"); from("direct:start") .to("mock:foo", "mock:bar", "mock:result");
Comments
Post a Comment