| Package | Description |
|---|---|
| org.springframework.web.server.adapter |
Implementations to adapt to the underlying
org.springframework.http.client.reactive reactive HTTP adapter
and HttpHandler. |
| org.springframework.web.server.handler |
Provides common WebHandler implementations and a
WebHandlerDecorator. |
| Modifier and Type | Class and Description |
|---|---|
class |
HttpWebHandlerAdapter
Default adapter of
WebHandler to the HttpHandler contract. |
| Modifier and Type | Method and Description |
|---|---|
static WebHttpHandlerBuilder |
WebHttpHandlerBuilder.webHandler(WebHandler webHandler)
Static factory method to create a new builder instance.
|
| Constructor and Description |
|---|
HttpWebHandlerAdapter(WebHandler delegate) |
| Modifier and Type | Class and Description |
|---|---|
class |
ExceptionHandlingWebHandler
WebHandler decorator that invokes one or more
WebExceptionHandlers
after the delegate WebHandler. |
class |
FilteringWebHandler
|
class |
WebHandlerDecorator
WebHandler that decorates and delegates to another. |
| Modifier and Type | Method and Description |
|---|---|
WebHandler |
WebHandlerDecorator.getDelegate() |
WebHandler |
DefaultWebFilterChain.getHandler() |
| Constructor and Description |
|---|
DefaultWebFilterChain(WebHandler handler,
WebFilter... filters) |
ExceptionHandlingWebHandler(WebHandler delegate,
java.util.List<WebExceptionHandler> handlers) |
FilteringWebHandler(WebHandler webHandler,
java.util.List<WebFilter> filters)
Constructor.
|
WebHandlerDecorator(WebHandler delegate) |