hero

Keva Web

Lightweight Java web framework for rapid development in the API era

Quick Start →

Expressive

The APIs is very simple and expressive, just read the guide and start building things in no time

Lightweight

No JavaEE, needn't learn Servlet, just use the APIs, no Servlet container, build and start are just in milliseconds

Performant

Blazing fast performance due to the simplicity nature of the framework, no need to learn the performance tricks

Lines of code GitHub

You have your RESTful API server ready to serve JSON in less than ten lines of code

import dev.keva.web.core.*;

public class Main {
   public static void main(String[] args) {
       HttpServer.builder().port(1234).build()
              .get("/hello", context -> 
                      HttpResponse.okJson(new Hello("world")))
              .run();
  }
}