extractMethod
Description
Extracts the HttpMethod
from the request context and provides it for use for other directives explicitly.
Example
In the below example our route first matches all GET
requests, and if an incoming request wasn't a GET
,
the matching continues and the extractMethod route will be applied which we can use to programatically
print what type of request it was - independent of what actual HttpMethod it was:
final Route route = route(
get(() ->
complete("This is a GET request.")
),
extractMethod(method ->
complete("This " + method.value() + " request, clearly is not a GET!")
)
);
testRoute(route).run(HttpRequest.GET("/")).assertEntity(
"This is a GET request.");
testRoute(route).run(HttpRequest.PUT("/").withEntity("put content"))
.assertEntity("This PUT request, clearly is not a GET!");
testRoute(route).run(HttpRequest.HEAD("/")).assertEntity(
"This HEAD request, clearly is not a GET!");
Custom Http Method
When you define a custom HttpMethod, you can define a route using extractMethod.
HttpMethod BOLT = HttpMethods.createCustom("BOLT", false, true, Expected); final ParserSettings parserSettings = ParserSettings.create(system).withCustomMethods(BOLT); final ServerSettings serverSettings = ServerSettings.create(system).withParserSettings(parserSettings); final Route routes = route( extractMethod( method -> complete( "This is a " + method.name() + " request.") ) ); final Flow<HttpRequest, HttpResponse, NotUsed> handler = routes.flow(system, materializer); final Http http = Http.get(system); final CompletionStage<ServerBinding> binding = http.bindAndHandle( handler, ConnectHttp.toHost(host, port), serverSettings, loggingAdapter, materializer); HttpRequest request = HttpRequest.create() .withUri("http://" + host + ":" + Integer.toString(port)) .withMethod(BOLT) .withProtocol(HTTP_1_0); CompletionStage<HttpResponse> response = http.singleRequest(request, materializer);
Contents