diff --git a/core/src/main/java/org/springframework/ws/server/MessageDispatcher.java b/core/src/main/java/org/springframework/ws/server/MessageDispatcher.java index 95fc54cc..b2f81579 100644 --- a/core/src/main/java/org/springframework/ws/server/MessageDispatcher.java +++ b/core/src/main/java/org/springframework/ws/server/MessageDispatcher.java @@ -41,18 +41,27 @@ import org.springframework.ws.transport.WebServiceMessageReceiver; import org.springframework.ws.transport.support.DefaultStrategiesHelper; /** - * Central dispatcher for use within Spring-WS. Dispatches Web service messages to registered endoints. - *
- * This dispatcher is quite similar to Spring MVCsDispatcherServlet. Just like it's counterpart, this
- * dispatcher is very flexible. EndpointMapping implementation - whether standard,
- * or provided as part of an application - to control the routing of request messages to endpoint objects. Endpoint
- * mappings can be registered using the endpointMappings property.EndpointAdapter; this allows to use any endpoint interface or form. Default are
- * MessageEndpointAdapter and PayloadEndpointAdapter, for MessageEndpoint and
- * PayloadEndpoint, respectively. Additional endpoint adapters can be added through the
- * endpointAdapters property.EndpointExceptionResolver, for example mapping certain exceptions to SOAP Faults. Default is none.
- * Additional exception resolvers can be added through the endpointExceptionResolvers property.This dispatcher is quite similar to Spring MVCs DispatcherServlet.
+ * Just like its counterpart, this dispatcher is very flexible.
+ *
+ *
EndpointMapping implementation - whether standard,
+ * or provided as part of an application - to control the routing of request messages
+ * to endpoint objects. Endpoint mappings can be registered using the
+ * endpointMappings property.EndpointAdapter; this allows one to use any endpoint
+ * interface or form. Defaults to the MessageEndpointAdapter and
+ * PayloadEndpointAdapter, for MessageEndpoint and
+ * PayloadEndpoint, respectively. Additional endpoint adapters can be
+ * added through the endpointAdapters property.EndpointExceptionResolver, for example mapping certain exceptions to
+ * SOAP Faults. Default is none. Additional exception resolvers can be added through
+ * the endpointExceptionResolvers property.