jettyServer.setThreadPool(pool);
// Add the collector servlet to server
Context root = new Context(jettyServer, "/", Context.SESSIONS);
root.addServlet(new ServletHolder(new ThriftServletCollector()), "/*");
jettyServer.start();
jettyServer.setStopAtShutdown(true);