类 ContextPathCompositeHandler

java.lang.Object
cn.taketoday.http.server.reactive.ContextPathCompositeHandler
所有已实现的接口:
HttpHandler

public class ContextPathCompositeHandler extends Object implements HttpHandler
HttpHandler delegating requests to one of several HttpHandler's based on simple, prefix-based mappings.

This is intended as a coarse-grained mechanism for delegating requests to one of several applications -- each represented by an HttpHandler, with the application "context path" (the prefix-based mapping) exposed via ServerHttpRequest.getPath().

从以下版本开始:
4.0
作者:
Rossen Stoyanchev