Skip to content

Instantly share code, notes, and snippets.

@leonmaia
Last active February 27, 2016 17:57
Show Gist options
  • Save leonmaia/592feb72c1f51380cb3a to your computer and use it in GitHub Desktop.
Save leonmaia/592feb72c1f51380cb3a to your computer and use it in GitHub Desktop.
public static void main(String[] args) throws Exception {
HandleErrors errorsFilter = new HandleErrors();
Service<Request, Response> service = errorsFilter.andThen(router());
ListeningServer server = Http.server().serve(addr, service);
Await.ready(server);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment