Ensure correct detection of Jetty WebSocket server

This commit is contained in:
rstoyanchev
2023-09-13 09:33:50 +01:00
parent 1f8913a96c
commit 74182cd3d6
3 changed files with 4 additions and 4 deletions

View File

@@ -89,7 +89,7 @@ public class HandshakeWebSocketService implements WebSocketService, ServletConte
tomcatWsPresent = ClassUtils.isPresent(
"org.apache.tomcat.websocket.server.WsHttpUpgradeHandler", classLoader);
jettyWsPresent = ClassUtils.isPresent(
"org.eclipse.jetty.websocket.server.JettyWebSocketServerContainer", classLoader);
"org.eclipse.jetty.ee10.websocket.server.JettyWebSocketServerContainer", classLoader);
undertowWsPresent = ClassUtils.isPresent(
"io.undertow.websockets.WebSocketProtocolHandshakeHandler", classLoader);
reactorNettyPresent = ClassUtils.isPresent(