ProxyServlet stop working after migration from jetty 8 to jetty 9
问题 I have an eclipse plugin which uses jetty server with ProxyServlet. Basically, the implementation is the following: ServletHolder proxyServletHolder = new ServletHolder(new SubClassOfProxyServlet()); proxyServletHolder.setAsyncSupported(true); ServletHandler proxyServletHandler = new ServletHandler(); proxyServletHandler.addServletWithMapping(proxyServletHolder, "/mapping/url"); After that I add proxy handler to the handler list and set this list to the server: HandlerList handlers = new