接口 WebFluxRegistrations
public interface WebFluxRegistrations
Interface to register key components of the
WebFluxAutoConfiguration in place
of the default ones provided by Spring WebFlux.
All custom instances are later processed by Boot and Spring WebFlux configurations. A single instance of this component should be registered, otherwise making it impossible to choose from redundant WebFlux components.
- 从以下版本开始:
- 2.1.0
- 作者:
- Artsiom Yudovin
- 另请参阅:
-
方法概要
修饰符和类型方法说明default RequestMappingHandlerAdapterReturn the customRequestMappingHandlerAdapterthat should be used and processed by the WebFlux configuration.default RequestMappingHandlerMappingReturn the customRequestMappingHandlerMappingthat should be used and processed by the WebFlux configuration.
-
方法详细资料
-
getRequestMappingHandlerMapping
Return the customRequestMappingHandlerMappingthat should be used and processed by the WebFlux configuration.- 返回:
- the custom
RequestMappingHandlerMappinginstance
-
getRequestMappingHandlerAdapter
Return the customRequestMappingHandlerAdapterthat should be used and processed by the WebFlux configuration.- 返回:
- the custom
RequestMappingHandlerAdapterinstance
-