interface HandlerMethodArgumentResolver
Strategy to resolve the argument value for a method parameter in the context of the current HTTP request.
Author
Rossen Stoyanchev
Since
5.0
abstract fun resolveArgument(parameter: MethodParameter, bindingContext: BindingContext, exchange: ServerWebExchange): Mono<Any>
Resolve the value for the method parameter. |
|
abstract fun supportsParameter(parameter: MethodParameter): Boolean
Whether this resolver supports the given method parameter. |
abstract class HandlerMethodArgumentResolverSupport : HandlerMethodArgumentResolver
Base class for HandlerMethodArgumentResolver implementations with access to a |