GET

fun GET(f: (ServerRequest) -> ServerResponse)

Adds a route to the given handler function that handles all HTTP GET requests.

Since

5.3

fun GET(pattern: String, f: (ServerRequest) -> ServerResponse)

Adds a route to the given handler function that handles all HTTP GET requests that match the given pattern.

Parameters

pattern

the pattern to match to

fun GET(predicate: RequestPredicate, f: (ServerRequest) -> ServerResponse)

Adds a route to the given handler function that handles all HTTP GET requests that match the given predicate.

Since

5.3

Parameters

predicate

predicate to match

fun GET(pattern: String, predicate: RequestPredicate, f: (ServerRequest) -> ServerResponse)

Adds a route to the given handler function that handles all HTTP GET requests that match the given pattern and predicate.

Since

5.2

Parameters

pattern

the pattern to match to

predicate

additional predicate to match

fun GET(pattern: String): RequestPredicate

Return a RequestPredicate that matches if request's HTTP method is GET and the given pattern matches against the request path.

See also