diff --git a/spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java b/spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java index 4c9052ecda0..15be39f2ac3 100644 --- a/spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java +++ b/spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java @@ -63,6 +63,7 @@ public class InvocableHandlerMethod extends HandlerMethod { private ReactiveAdapterRegistry reactiveAdapterRegistry = ReactiveAdapterRegistry.getSharedInstance(); + /** * Create an instance from a {@code HandlerMethod}. */ @@ -110,8 +111,8 @@ public class InvocableHandlerMethod extends HandlerMethod { } /** - * Configure a reactive registry. This is needed for cases where the response is fully - * handled within the controller in combination with an async void return value. + * Configure a reactive adapter registry. This is needed for cases where the response is + * fully handled within the controller in combination with an async void return value. *

By default this is a {@link ReactiveAdapterRegistry} with default settings. */ public void setReactiveAdapterRegistry(ReactiveAdapterRegistry registry) { @@ -124,7 +125,7 @@ public class InvocableHandlerMethod extends HandlerMethod { * @param exchange the current exchange * @param bindingContext the binding context to use * @param providedArgs optional list of argument values to match by type - * @return a Mono with a {@link HandlerResult}. + * @return a Mono with a {@link HandlerResult} */ public Mono invoke( ServerWebExchange exchange, BindingContext bindingContext, Object... providedArgs) {