Jetty 11: Set idle timeout for WebSockets programmatically and via configuration file
I have found a way to set the idle timeout for Jetty 11 WebSocket connections programmatically by invoking factory.setIdleTimeout
in an implementation of the JettyWebSocketServlet.configure(JettyWebSocketServletFactory factory)
method. I wonder…