Skip to content

Instantly share code, notes, and snippets.

View ingramchen's full-sized avatar

Ingram Chen ingramchen

View GitHub Profile
@ingramchen
ingramchen / gist:98d0cc3b325999fa0a7a
Created May 8, 2014 13:17
Embed Tomcat with nio connector
Tomcat tomcat = ....
final Connector nioConnector = new Connector(Http11NioProtocol.class.getName());
nioConnector.setPort(58090);
nioConnector.setSecure(false);
nioConnector.setScheme("http");
nioConnector.setProtocol("HTTP/1.1");
try {
nioConnector.setProperty("address", InetAddress.getByName("localhost").getHostAddress());