Skip to content

Instantly share code, notes, and snippets.

@jfarcand
Created May 30, 2012 17:52
Show Gist options
  • Save jfarcand/2837932 to your computer and use it in GitHub Desktop.
Save jfarcand/2837932 to your computer and use it in GitHub Desktop.
NettoSphere
Nettosphere server = new Nettosphere.Builder().config(
new Config.Builder()
.host("127.0.0.1")
.port(8080)
.resource("/*", MyServlet.class)
.build())
.build();
server.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment