Vert.x初探

Vert.x是一个异步编程框架,支持多种语言编写。还能支持集群。
用Java写的第一个HTTP请求服务。
新建maven工程,把vert.x的依赖加进去:

  
      io.vertx
      vertx-core
      3.4.2
    
    
      io.vertx
      vertx-web
      3.4.2
    

然后在main函数下写入下面的代码;

Vertx vertx = Vertx.vertx();
        Router router = Router.router(vertx);

    
        HttpServerOptions options = new HttpServerOptions();
        vertx.createHttpServer(options).requestHandler(router::accept).listen(8080);

     
        router.route().path("/").handler(context -> {
            context.response().end("hello world");
        });

        System.out.println("已启动");

启动程序,打开浏览器访问localhost:8080即可.

你可能感兴趣的:(Vert.x初探)