Starter project for Gradle
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);
}
}
./gradlew joobyRun
./gradlew test
- Read the module documentation
- Join the channel
- Join the group