Spark: Sehr hübsches Java Micro-Web-Framework

http://www.sparkjava.com/. Traumhaft einfach:

import static spark.Spark.*;

public class HelloWorld {
   public static void main(String[] args) {
   
      get("/hello", (req, res) -> "Hello World");
   
   }
}

Ähnliche Beiträge

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert