Skip to content

Instantly share code, notes, and snippets.

@notdol
Created January 29, 2013 05:42
Show Gist options
  • Save notdol/4662096 to your computer and use it in GitHub Desktop.
Save notdol/4662096 to your computer and use it in GitHub Desktop.
vertx create default server
vertx.createHttpServer().requestHandler(new Handler<HttpServerRequest>() {
public void handle(HttpServerRequest req) {
String file = req.path.equals("/") ? "index.html" : req.path;
req.response.sendFile("webroot/" + file);
}
}).listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment