Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildRouteWithInterceptor.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildRouteWithInterceptor.xml?rev=761288&r1=761287&r2=761288&view=diff ============================================================================== --- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildRouteWithInterceptor.xml (original) +++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildRouteWithInterceptor.xml Thu Apr 2 13:28:50 2009 @@ -22,27 +22,23 @@ http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd "> - <!-- - from("seda:a") - .intercept() - .add(interceptor1) - .add(interceptor2) - .target().to("seda:d"); - --> - <!-- START SNIPPET: example --> - <bean id="interceptor1" class="org.apache.camel.builder.MyInterceptorProcessor"/> - <bean id="interceptor2" class="org.apache.camel.builder.MyInterceptorProcessor"/> + <!-- setup our error handler as the deal letter channel --> + <bean id="errorHandler" class="org.apache.camel.builder.DeadLetterChannelBuilder"> + <property name="deadLetterUri" value="mock:error"/> + </bean> - <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> - <route> - <interceptor ref="interceptor1"/> - <interceptor ref="interceptor2"/> - - <from uri="seda:a"/> - <to uri="seda:d"/> - </route> - </camelContext> - <!-- END SNIPPET: example --> + <!-- START SNIPPET: example --> + <bean id="interceptor1" class="org.apache.camel.builder.MyInterceptorProcessor"/> + <bean id="interceptor2" class="org.apache.camel.builder.MyInterceptorProcessor"/> + <camelContext errorHandlerRef="errorHandler" id="camel" xmlns="http://camel.apache.org/schema/spring"> + <route> + <from uri="seda:a"/> + <interceptor ref="interceptor1"/> + <interceptor ref="interceptor2"/> + <to uri="seda:d"/> + </route> + </camelContext> + <!-- END SNIPPET: example --> </beans>
Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRoute.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRoute.xml?rev=761288&r1=761287&r2=761288&view=diff ============================================================================== --- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRoute.xml (original) +++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRoute.xml Thu Apr 2 13:28:50 2009 @@ -22,17 +22,19 @@ http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd "> - <!-- - from("seda:a").to("seda:b"); - --> - <!-- START SNIPPET: example --> - <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> - <route> - <from uri="seda:a"/> - <to uri="seda:b"/> - </route> - </camelContext> - <!-- END SNIPPET: example --> + <!-- setup our error handler as the deal letter channel --> + <bean id="errorHandler" class="org.apache.camel.builder.DeadLetterChannelBuilder"> + <property name="deadLetterUri" value="mock:error"/> + </bean> + + <!-- START SNIPPET: example --> + <camelContext errorHandlerRef="errorHandler" id="camel" xmlns="http://camel.apache.org/schema/spring"> + <route> + <from uri="seda:a"/> + <to uri="seda:b"/> + </route> + </camelContext> + <!-- END SNIPPET: example --> </beans> Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRouteWithChoice.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRouteWithChoice.xml?rev=761288&r1=761287&r2=761288&view=diff ============================================================================== --- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRouteWithChoice.xml (original) +++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRouteWithChoice.xml Thu Apr 2 13:28:50 2009 @@ -22,32 +22,31 @@ http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd "> - <!-- - from("seda:a").choice() - .when(header("foo").isEqualTo("bar")).to("seda:b") - .when(header("foo").isEqualTo("cheese")).to("seda:c") - .otherwise().to("seda:d"); - --> - <!-- START SNIPPET: example --> - <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> - <route> - <from uri="seda:a"/> - <choice> - <when> - <xpath>$foo = 'bar'</xpath> - <to uri="seda:b"/> - </when> - <when> - <xpath>$foo = 'cheese'</xpath> - <to uri="seda:c"/> - </when> - <otherwise> - <to uri="seda:d"/> - </otherwise> - </choice> - </route> - </camelContext> - <!-- END SNIPPET: example --> + <!-- setup our error handler as the deal letter channel --> + <bean id="errorHandler" class="org.apache.camel.builder.DeadLetterChannelBuilder"> + <property name="deadLetterUri" value="mock:error"/> + </bean> + + <!-- START SNIPPET: example --> + <camelContext errorHandlerRef="errorHandler" id="camel" xmlns="http://camel.apache.org/schema/spring"> + <route> + <from uri="seda:a"/> + <choice> + <when> + <xpath>$foo = 'bar'</xpath> + <to uri="seda:b"/> + </when> + <when> + <xpath>$foo = 'cheese'</xpath> + <to uri="seda:c"/> + </when> + <otherwise> + <to uri="seda:d"/> + </otherwise> + </choice> + </route> + </camelContext> + <!-- END SNIPPET: example --> </beans> Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRouteWithHeaderPredicate.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRouteWithHeaderPredicate.xml?rev=761288&r1=761287&r2=761288&view=diff ============================================================================== --- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRouteWithHeaderPredicate.xml (original) +++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSimpleRouteWithHeaderPredicate.xml Thu Apr 2 13:28:50 2009 @@ -22,20 +22,21 @@ http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd "> - <!-- - from("seda:a").filter(header("foo").isEqualTo("bar")).to("seda:b"); - --> - <!-- START SNIPPET: example --> - <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> - <route> - <from uri="seda:a"/> - <filter> - <xpath>$foo = 'bar'</xpath> - <to uri="seda:b"/> - </filter> - </route> - </camelContext> - <!-- END SNIPPET: example --> + <!-- setup our error handler as the deal letter channel --> + <bean id="errorHandler" class="org.apache.camel.builder.DeadLetterChannelBuilder"> + <property name="deadLetterUri" value="mock:error"/> + </bean> + <!-- START SNIPPET: example --> + <camelContext errorHandlerRef="errorHandler" id="camel" xmlns="http://camel.apache.org/schema/spring"> + <route> + <from uri="seda:a"/> + <filter> + <xpath>$foo = 'bar'</xpath> + <to uri="seda:b"/> + </filter> + </route> + </camelContext> + <!-- END SNIPPET: example --> </beans> Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSplitter.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSplitter.xml?rev=761288&r1=761287&r2=761288&view=diff ============================================================================== --- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSplitter.xml (original) +++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildSplitter.xml Thu Apr 2 13:28:50 2009 @@ -22,20 +22,21 @@ http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd "> - <!-- - from("seda:a").splitter(bodyAs(String.class).tokenize("\n")).to("seda:b"); - --> - <!-- START SNIPPET: example --> - <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> - <route> - <from uri="seda:a"/> - <split> - <xpath>/invoice/lineItems</xpath> - <to uri="seda:b"/> - </split> - </route> - </camelContext> - <!-- END SNIPPET: example --> + <!-- setup our error handler as the deal letter channel --> + <bean id="errorHandler" class="org.apache.camel.builder.DeadLetterChannelBuilder"> + <property name="deadLetterUri" value="mock:error"/> + </bean> + <!-- START SNIPPET: example --> + <camelContext errorHandlerRef="errorHandler" id="camel" xmlns="http://camel.apache.org/schema/spring"> + <route> + <from uri="seda:a"/> + <split> + <xpath>/invoice/lineItems</xpath> + <to uri="seda:b"/> + </split> + </route> + </camelContext> + <!-- END SNIPPET: example --> </beans> Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildStaticRecipientList.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildStaticRecipientList.xml?rev=761288&r1=761287&r2=761288&view=diff ============================================================================== --- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildStaticRecipientList.xml (original) +++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildStaticRecipientList.xml Thu Apr 2 13:28:50 2009 @@ -22,17 +22,22 @@ http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd "> - <!-- START SNIPPET: example --> - <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> - <route> - <from uri="seda:a"/> - <multicast> - <to uri="seda:b"/> - <to uri="seda:c"/> - <to uri="seda:d"/> - </multicast> - </route> - </camelContext> - <!-- END SNIPPET: example --> + <!-- setup our error handler as the deal letter channel --> + <bean id="errorHandler" class="org.apache.camel.builder.DeadLetterChannelBuilder"> + <property name="deadLetterUri" value="mock:error"/> + </bean> + + <!-- START SNIPPET: example --> + <camelContext errorHandlerRef="errorHandler" id="camel" xmlns="http://camel.apache.org/schema/spring"> + <route> + <from uri="seda:a"/> + <multicast> + <to uri="seda:b"/> + <to uri="seda:c"/> + <to uri="seda:d"/> + </multicast> + </route> + </camelContext> + <!-- END SNIPPET: example --> </beans> Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildWireTap.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildWireTap.xml?rev=761288&r1=761287&r2=761288&view=diff ============================================================================== --- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildWireTap.xml (original) +++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/xml/buildWireTap.xml Thu Apr 2 13:28:50 2009 @@ -22,16 +22,21 @@ http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd "> - <!-- START SNIPPET: example --> - <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> - <route> - <from uri="seda:a"/> - <multicast> - <to uri="seda:tap"/> - <to uri="seda:b"/> - </multicast> - </route> - </camelContext> - <!-- END SNIPPET: example --> + <!-- setup our error handler as the deal letter channel --> + <bean id="errorHandler" class="org.apache.camel.builder.DeadLetterChannelBuilder"> + <property name="deadLetterUri" value="mock:error"/> + </bean> + + <!-- START SNIPPET: example --> + <camelContext errorHandlerRef="errorHandler" id="camel" xmlns="http://camel.apache.org/schema/spring"> + <route> + <from uri="seda:a"/> + <multicast> + <to uri="seda:tap"/> + <to uri="seda:b"/> + </multicast> + </route> + </camelContext> + <!-- END SNIPPET: example --> </beans>