Der Artikel Creating REST Microservices with Javalin stellt ein interessantes und leichtgewichtiges Framework vor.
Javalin app = Javalin.create() .port(7000) .start(); app.get("/hello", ctx -> ctx.html("Hallo Javalin!")); |
Der Artikel Creating REST Microservices with Javalin stellt ein interessantes und leichtgewichtiges Framework vor.
Javalin app = Javalin.create() .port(7000) .start(); app.get("/hello", ctx -> ctx.html("Hallo Javalin!")); |