Example usage for org.springframework.http.server.reactive ContextPathCompositeHandler ContextPathCompositeHandler

List of usage examples for org.springframework.http.server.reactive ContextPathCompositeHandler ContextPathCompositeHandler

Introduction

In this page you can find the example usage for org.springframework.http.server.reactive ContextPathCompositeHandler ContextPathCompositeHandler.

Prototype

public ContextPathCompositeHandler(Map<String, ? extends HttpHandler> handlerMap) 

Source Link

Usage

From source file:org.springframework.cloud.gateway.test.support.AbstractHttpServer.java

protected HttpHandler resolveHttpHandler() {
    return (getHttpHandlerMap() != null ? new ContextPathCompositeHandler(getHttpHandlerMap())
            : getHttpHandler());
}