Skip to content

Instantly share code, notes, and snippets.

@jvanzyl
Created February 9, 2016 00:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jvanzyl/6128bdf323c8e4b3467e to your computer and use it in GitHub Desktop.
Save jvanzyl/6128bdf323c8e4b3467e to your computer and use it in GitHub Desktop.
public class Looper {
public Looper() {
WebServer server = new WebServerBuilder()
.port(9000)
.serve("/api/*").withJaxRs()
.build();
server.start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment