INTSAMPLES-19 Add Error Handling Example

This commit is contained in:
Gary Russell
2011-02-02 15:37:55 -05:00
parent a60c7a541f
commit 2df45b703f
4 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/integration"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/integration
http://www.springframework.org/schema/integration/spring-integration.xsd">
<gateway id="voidGateway"
default-request-channel="inputChannel"
error-channel="errorChannel"
service-interface="org.springframework.integration.samples.testing.gateway.VoidGateway">
</gateway>
<channel id="inputChannel"/>
<channel id="errorChannel"/>
</beans:beans>