mountdreams
Results
2
comments of
mountdreams
**the verticle** `package com.example.vertx; import io.vertx.core.AbstractVerticle; public class MainVerticle extends AbstractVerticle { @Override public void start() throws Exception { vertx.createHttpServer().requestHandler(req -> { req.response() .putHeader("content-type", "text/plain") .end("test"); }).listen(8080); System.out.println("HTTP server started...
i'm using windows 10