Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

RedeliveryPolicy

A redelivery policy defines rules when Camel Error Handler perform redelivery attempts. For example you can setup rules that state how many times to try redelivery, and the delay in between attempts, and so forth.

You can use redelivery policies at two places in Camel:

For example you can define a default error handler to redelivery at most 3 times

Code Block
java
java
errorHandler(defaultErrorHandler().maximumRedeliveries(3));

And in XML

Code Block
xml
xml
<errorHandler id="defaultEH">
  <redeliveryPolicy maximumRedeliveries="3"/>
</errorHandler>

See more details at Error Handler.

Tip
Extensive coverage
Extensive coverage

The Camel Error Handler is covered in great details in the Camel in Action book where the entire chapter 5 has been devoted.

Using RedeliveryPolicyProfiles

Available as of Camel 2.7

In the XML snippet below we have defined a <redeliveryPolicyProfile> which we can refer to from the <errorHandler>.

Wiki Markup
{snippet:id=e1|lang=xml|url=camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/SpringErrorHandlerRedeliveryPolicyProfileTest.xml}

Camel's Properties placeholder is also supported which the following XML example shows:

Wiki Markup
{snippet:id=e1|lang=xml|url=camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/component/properties/SpringPropertiesComponentOnExceptionRefTest.xml}

And you can also use Spring Frameworks property placeholders as shown below:

Wiki Markup
{snippet:id=e1|lang=xml|url=camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/component/properties/SpringPropertyPlaceholderOnExceptionRefTest.xml}

See Also