Polishing

This commit is contained in:
Juergen Hoeller
2015-10-13 16:44:51 +02:00
parent c0b6d320f1
commit 799a03e98d
4 changed files with 24 additions and 23 deletions

View File

@@ -50,7 +50,7 @@ import org.springframework.web.socket.server.HandshakeFailureException;
import org.springframework.web.socket.server.RequestUpgradeStrategy;
/**
* A {@link RequestUpgradeStrategy} for use with Jetty 9.x. Based on Jetty's
* A {@link RequestUpgradeStrategy} for use with Jetty 9.0-9.2. Based on Jetty's
* internal {@code org.eclipse.jetty.websocket.server.WebSocketHandler} class.
*
* @author Phillip Webb

View File

@@ -54,7 +54,7 @@ import org.springframework.web.socket.server.RequestUpgradeStrategy;
* <p>If the negotiation succeeds, the actual upgrade is delegated to a server-specific
* {@link org.springframework.web.socket.server.RequestUpgradeStrategy}, which will update
* the response as necessary and initialize the WebSocket. Currently supported servers are
* Jetty 9.x, Tomcat 7.0.47+ and 8.x, Undertow 1.0-1.2, GlassFish 4.1+, WebLogic 12.1.3+.
* Jetty 9.0-9.2, Tomcat 7.0.47+ and 8.x, Undertow 1.0-1.2, GlassFish 4.1+, WebLogic 12.1.3+.
*
* @author Rossen Stoyanchev
* @author Juergen Hoeller