pathExtension

fun pathExtension(extension: String, f: (ServerRequest) -> Mono<out ServerResponse>)
fun pathExtension(predicate: (String) -> Boolean, f: (ServerRequest) -> Mono<out ServerResponse>)

Route to the given handler function if the given pathExtension predicate applies.

See also


Return a RequestPredicate that matches if the request's path has the given extension.

Return

a predicate that matches if the request's path has the given file extension

Parameters

extension

the path extension to match against, ignoring case


Return a RequestPredicate that matches if the request's path matches the given predicate.

See also