INTSAMPLES-19 Add Error Handling Example
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user