I\'m using jetty 9.1.0, embedded, and would like to set both port and ThreadPool. I see a constructor for each, but don\'t see how to use one of those, and then any way to set t
I can't test it right know, but I assume you can
a) Use a configuration file and load it
or
b) Use the QueuedThreadPool and do the following:
SelectChannelConnector connector = new SelectChannelConnector(); connector.setPort(9090); server.addConnector(connector);