diff --git a/core/src/main/java/org/springframework/ws/transport/http/MessageDispatcherServlet.java b/core/src/main/java/org/springframework/ws/transport/http/MessageDispatcherServlet.java index 7b3f0c98..48648e21 100644 --- a/core/src/main/java/org/springframework/ws/transport/http/MessageDispatcherServlet.java +++ b/core/src/main/java/org/springframework/ws/transport/http/MessageDispatcherServlet.java @@ -42,14 +42,14 @@ import org.springframework.ws.wsdl.WsdlDefinition; /** * Servlet for simplified dispatching of Web service messages. *
- *This servlet is a convenient alternative to the standard Spring-MVC {@link DispatcherServlet} with separate {@link + * This servlet is a convenient alternative to the standard Spring-MVC {@link DispatcherServlet} with separate {@link * WebServiceMessageReceiverHandlerAdapter}, {@link MessageDispatcher}, and {@link WsdlDefinitionHandlerAdapter} * instances. *
- *This servlet automatically detects {@link EndpointAdapter EndpointAdapters}, {@link EndpointMapping + * This servlet automatically detects {@link EndpointAdapter EndpointAdapters}, {@link EndpointMapping * EndpointMappings}, and {@link EndpointExceptionResolver EndpointExceptionResolvers} by type. *
- *This servlet also automatically detects any {@link WsdlDefinition} in its application context. This WSDL is
+ * This servlet also automatically detects any {@link WsdlDefinition} in its application context. This WSDL is
* exposed under the bean name: for example, a {@link WsdlDefinition} bean named 'echo' will be exposed as
* echo.wsdl in this servlet's context: http://localhost:8080/spring-ws/echo.wsdl. When the
* transformWsdlLocations init-param is set to true in this servlet's configuration in