|
Page Edited :
CAMEL :
Error Handler
Error Handler has been edited by Claus Ibsen (Sep 08, 2008). Content:Error HandlerCamel supports pluggable ErrorHandler Some current implementations include
These error handlers can be applied in the DSL to an entire set of rules or a specific routing rule as we show in the next examples. Error handling rules are inherited on each routing rule within a single RouteBuilder Setting global error handlersThe following example shows how you can register a global error handler (in this case using the logging handler) RouteBuilder builder = new RouteBuilder() { public void configure() { errorHandler(loggingErrorHandler("FOO.BAR")); from("seda:a").to("seda:b"); } };
The error handler is configured with the errorHandlerRef attribute. Default Error HandlerThe default error handler is the Dead Letter Channel which is automatically configured for you. You can then configure the specific dead letter endpoint to use either for an entire rule base or a specific rule as shown above. For example RouteBuilder builder = new RouteBuilder() { public void configure() { errorHandler(deadLetterChannel("seda:errors")); from("seda:a").to("seda:b"); } }; Overriding default behaviorYou can also configure the RedeliveryPolicy RouteBuilder builder = new RouteBuilder() { public void configure() { errorHandler(deadLetterChannel("seda:errors").maximumRedeliveries(2).useExponentialBackOff()); from("seda:a").to("seda:b"); } }; As of Camel 1.4 you can configure the ExceptionPolicyStrategy public void configure() throws Exception { // configure the error handler to use my policy instead of the default from Camel errorHandler(deadLetterChannel().exceptionPolicyStrategy(new MyPolicy())); exception(MyPolicyException.class) .maximumRedeliveries(1) .setHeader(MESSAGE_INFO, constant("Damm my policy exception")) .to(ERROR_QUEUE); exception(CamelException.class) .maximumRedeliveries(3) .setHeader(MESSAGE_INFO, constant("Damm a Camel exception")) .to(ERROR_QUEUE); Using our own strategy MyPolicy we can change the default behavior of Camel with our own code to resolve which ExceptionType public static class MyPolicy implements ExceptionPolicyStrategy { public ExceptionType getExceptionPolicy(Map<Class, ExceptionType> exceptionPolicices, Exchange exchange, Throwable exception) { // This is just an example that always forces the exception type configured // with MyPolicyException to win. return exceptionPolicices.get(MyPolicyException.class); } } Using the transactional error handlerThe transactional error handler is introduced in Camel 1.4 and is based on spring transaction. This requires the usage of the camel-spring component. See alsoThe Dead Letter Channel for further details. |
Unsubscribe or edit your notifications preferences
