jonahkh
2020-05-13 4829e49af4e2cd4d8c8dfe0c215bd9f3d65efdfb
1
2
3
4
5
6
7
8
9
package io.vertx.example;
 
import io.vertx.core.Vertx;
 
public class HelloRedHatEmbedded {
  public static void main(String[] args) {
    Vertx.vertx().createHttpServer().requestHandler(req -> req.response().end("Hello Red Hat!\n")).listen(8080);
  }
}