Simple Java web framework

Gabriel picture Gabriel · Jan 24, 2010 · Viewed 26.1k times · Source

Is there any simple java web framework like sinatra (for ruby) or web.py (for python)?

Answer

pka picture pka · May 19, 2011

If you want a strict Java framework Spark might be an alternative:

import static spark.Spark.*;

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