All Downloads are FREE. Search and download functionalities are using the official Maven repository.

multiProjectBuild.http.src.main.java.example.App Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
package example;

import ratpack.server.RatpackServer;

public class App {

    public static void main(String[] args) throws Exception {
        RatpackServer.start(server -> server
            .handlers(chain -> chain
                .get(ctx -> ctx.render("Hello World!"))
                .get(":name", ctx -> ctx.render("Hello " + ctx.getPathTokens().get("name") + "!"))
            )
        );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy