Module io.avaje.jex


module io.avaje.jex
Defines the Jex HTTP server API, for running a minimal HTTP server.

 final Jex.Server app = Jex.create()
   .routing(routing -> routing
     .get("/", ctx -> ctx.text("hello world"))
     .get("/one", ctx -> ctx.text("one"))
   .port(8080)
   .start();

 app.shutdown();