Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 807 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 807 Bytes

Build Status

gradle-starter

Starter project for Gradle

quick preview

This project contains a simple Hello World application.

public class App extends Jooby {

  {
    get(req -> {
      String name = req.param("name").value("Jooby");
      return "Hello " + name + "!";
    });
  }

  public static void main(String[] args) {
    run(App::new, args);
  }
}

run

./gradlew joobyRun

test

./gradlew test

help