Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.57 KB

File metadata and controls

55 lines (38 loc) · 1.57 KB

Maven Central javadoc Become a Patreon Build Status Join the chat at https://gitter.im/jooby-project/jooby

∞ do more, more easily

Jooby 2.x is a modern, performant and easy to use web framework for Java and Kotlin built on top of your favorite web server.

Java:

import static org.jooby.Jooby.runApp;

public class App {

  public static void main(final String[] args) {
    runApp(args, app -> {
      app.get("/", ctx -> "Welcome to Jooby!");
    });
  }
}

Kotlin:

import org.jooby.runApp

fun main(args: Array<String>) {
  runApp(args) {
    get ("/") {
      "Welcome to Jooby!"
    }
  }
}

Documentation for current version is available at https://jooby.io

Documentation for previous version is available at Jooby 1.x documentation

author

Edgar Espina

license

Apache License 2