Example usage for org.springframework.web.server.handler WebHandlerDecorator subclass-usage

List of usage examples for org.springframework.web.server.handler WebHandlerDecorator subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.server.handler WebHandlerDecorator subclass-usage.

Usage

From source file org.springframework.web.server.handler.ExceptionHandlingWebHandler.java

/**
 * WebHandler that can invoke a target {@link WebHandler} and then apply
 * exception handling with one or more {@link WebExceptionHandler} instances.
 *
 * @author Rossen Stoyanchev
 * @since 5.0

From source file org.springframework.web.server.adapter.HttpWebHandlerAdapter.java

/**
 * Default adapter of {@link WebHandler} to the {@link HttpHandler} contract.
 *
 * <p>By default creates and configures a {@link DefaultServerWebExchange} and
 * then invokes the target {@code WebHandler}.
 *

From source file org.springframework.cloud.gateway.handler.FilteringWebHandler.java

/**
 * WebHandler that delegates to a chain of {@link GlobalFilter} instances and
 * {@link RouteFilter} instances then to the target {@link WebHandler}.
 *
 * @author Rossen Stoyanchev
 * @author Spencer Gibb