diff --git a/docs/src/reference/docbook/bridge.xml b/docs/src/reference/docbook/bridge.xml
index 6bfc6742cb..aac5dd0868 100644
--- a/docs/src/reference/docbook/bridge.xml
+++ b/docs/src/reference/docbook/bridge.xml
@@ -27,7 +27,7 @@
- The <bridge> Element
+ Configuring Bridge
The <bridge> element is used to create a Messaging Bridge between two Message Channels or Channel Adapters.
Simply provide the "input-channel" and "output-channel" attributes:
diff --git a/docs/src/reference/docbook/channel-adapter.xml b/docs/src/reference/docbook/channel-adapter.xml
index fc18b04db8..a689e3b997 100644
--- a/docs/src/reference/docbook/channel-adapter.xml
+++ b/docs/src/reference/docbook/channel-adapter.xml
@@ -12,7 +12,7 @@
- The <inbound-channel-adapter> element
+ Configuring Inbound Channel Adapter
An "inbound-channel-adapter" element can invoke any method on a Spring-managed Object and send a non-null return
value to a MessageChannel after converting it to a Message.
@@ -38,7 +38,7 @@
- The <outbound-channel-adapter/> element
+ Configuring Outbound Channel Adapter
An "outbound-channel-adapter" element can also connect a MessageChannel to any POJO consumer
method that should be invoked with the payload of Messages sent to that channel.
diff --git a/docs/src/reference/docbook/gateway.xml b/docs/src/reference/docbook/gateway.xml
index 350814309f..bfc9e0e2ff 100644
--- a/docs/src/reference/docbook/gateway.xml
+++ b/docs/src/reference/docbook/gateway.xml
@@ -15,13 +15,13 @@ package org.cafeteria;
public interface Cafe {
- void placeOrder(Order order);
+ void placeOrder(Order order);
}
]]>
Namespace support is also
- provided as demonstrated by the following example.
+ provided which allows you to configure such interface as a service and is demonstrated by the following example.
- Namespace support for Router - <router> element
+ Configuring Router
+
+ Configuring Router with XML
The "router" element provides a simple way to connect a router to an input channel, and also accepts the
optional default output channel. The "ref" may provide the bean name of a custom Router implementation
@@ -211,7 +213,7 @@
- The @Router Annotation
+ Configuring Router with Annotations
When using the @Router annotation, the annotated method can return either the
MessageChannel or String type. In the case of the latter,
@@ -239,6 +241,10 @@ public List<String> route(Foo payload) {...}
public List<String> route(@Header("orderStatus") OrderStatus status)
+
+
+
+
For routing of XML-based Messages, including XPath support, see .