Skip to content

Instantly share code, notes, and snippets.

@notdol
Created January 29, 2013 05:37
Show Gist options
  • Save notdol/4662074 to your computer and use it in GitHub Desktop.
Save notdol/4662074 to your computer and use it in GitHub Desktop.
vertx:createServer
HttpServer server = vertx.createHttpServer();
server.requestHandler(new Handler<HttpServerRequest>() {
public void handle(HttpServerRequest request) {
request.response.end("Hello Vert.x");
}
});
System.out.println("server is running on http://localhost:9090/");
server.listen(9090);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment