Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
None
-
None
-
Novice
Description
The example in the documentation on the onException page (http://camel.apache.org/exception-clause.html) shows incorrect configuration of an external redelivery policy.
It currently shows:
<bean id="myRedeliveryPolicy" class="org.apache.camel.processor.RedeliveryPolicy">
<property name="maximumRedeliveries" value="${myprop.max}"/>
</bean>
<onException>
<!-- you can define multiple exceptions just adding more exception elements as show below -->
<exception>com.mycompany.MyFirstException</exception>
<exception>com.mycompany.MySecondException</exception>
<!-- here we reference our redelivery policy defined above -->
<redeliveryPolicy ref="myRedeliveryPolicy"/>
</onException>
But it should be:
<bean id="myRedeliveryPolicy" class="org.apache.camel.processor.RedeliveryPolicy">
<property name="maximumRedeliveries" value="${myprop.max}"/>
</bean>
<onException redeliveryPolicyRef="myRedeliveryPolicy">
<exception>com.mycompany.MyFirstException</exception>
<exception>com.mycompany.MySecondException</exception>
<!-- more config here -->
</onException>