public interface HandlerMethodArgumentResolver
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Mono<Object> |
resolveArgument(org.springframework.core.MethodParameter parameter,
org.springframework.ui.ModelMap model,
org.springframework.web.server.ServerWebExchange exchange)
The returned
Mono may produce one or zero values if the argument
does not resolve to any value, which will result in null passed
as the argument value. |
boolean |
supportsParameter(org.springframework.core.MethodParameter parameter) |
boolean supportsParameter(org.springframework.core.MethodParameter parameter)
reactor.core.publisher.Mono<Object> resolveArgument(org.springframework.core.MethodParameter parameter, org.springframework.ui.ModelMap model, org.springframework.web.server.ServerWebExchange exchange)
Mono
may produce one or zero values if the argument
does not resolve to any value, which will result in null
passed
as the argument value.parameter
- the method parametermodel
- the implicit model for request handlingexchange
- the current exchange