Skip navigation links
A B C D E G H I O P R S W 

A

afterPropertiesSet() - Method in class org.springframework.integration.webflux.inbound.WebFluxIntegrationRequestMappingHandlerMapping
 

B

bodyExtractor(BodyExtractor<?, ClientHttpResponse>) - Method in class org.springframework.integration.webflux.dsl.WebFluxMessageHandlerSpec
Specify a BodyExtractor as an alternative to the expectedResponseType to allow to get low-level access to the received ClientHttpResponse.

C

ClientHttpResponseBodyExtractor - Class in org.springframework.integration.webflux.support
The BodyExtractor identity function implementation which just returns the provided ClientHttpResponse.
ClientHttpResponseBodyExtractor() - Constructor for class org.springframework.integration.webflux.support.ClientHttpResponseBodyExtractor
 
codecConfigurer(ServerCodecConfigurer) - Method in class org.springframework.integration.webflux.dsl.WebFluxInboundEndpointSpec
 

D

detectHandlerMethods(Object) - Method in class org.springframework.integration.webflux.inbound.WebFluxIntegrationRequestMappingHandlerMapping
 
doParse(Element, ParserContext, BeanDefinitionBuilder) - Method in class org.springframework.integration.webflux.config.WebFluxInboundEndpointParser
 

E

exchange(Supplier<URI>, HttpMethod, HttpEntity<?>, Object, Message<?>) - Method in class org.springframework.integration.webflux.outbound.WebFluxRequestExecutingMessageHandler
 
expectReply(boolean) - Method in class org.springframework.integration.webflux.dsl.WebFluxMessageHandlerSpec
 
extract(ClientHttpResponse, BodyExtractor.Context) - Method in class org.springframework.integration.webflux.support.ClientHttpResponseBodyExtractor
 

G

getBeanClass(Element) - Method in class org.springframework.integration.webflux.config.WebFluxInboundEndpointParser
 
getBuilder(Element, ParserContext) - Method in class org.springframework.integration.webflux.config.WebFluxOutboundChannelAdapterParser
 
getBuilder(Element, ParserContext) - Method in class org.springframework.integration.webflux.config.WebFluxOutboundGatewayParser
 
getComponentType() - Method in class org.springframework.integration.webflux.inbound.WebFluxInboundEndpoint
 
getComponentType() - Method in class org.springframework.integration.webflux.outbound.WebFluxRequestExecutingMessageHandler
 
getOrder() - Method in class org.springframework.integration.webflux.inbound.IntegrationHandlerResultHandler
 

H

handle(ServerWebExchange) - Method in class org.springframework.integration.webflux.inbound.WebFluxInboundEndpoint
 
HANDLER_MAPPING_BEAN_NAME - Static variable in class org.springframework.integration.webflux.support.WebFluxContextUtils
The name for the infrastructure WebFluxIntegrationRequestMappingHandlerMapping bean.
handleResult(ServerWebExchange, HandlerResult) - Method in class org.springframework.integration.webflux.inbound.IntegrationHandlerResultHandler
 

I

inboundChannelAdapter(String...) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxInboundEndpointSpec builder for one-way reactive adapter based on the provided path array for mapping.
inboundGateway(String...) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxInboundEndpointSpec builder for request-reply reactive gateway based on the provided path array for mapping.
init() - Method in class org.springframework.integration.webflux.config.WebFluxNamespaceHandler
 
initCorsConfiguration(Object, Method, RequestMappingInfo) - Method in class org.springframework.integration.webflux.inbound.WebFluxIntegrationRequestMappingHandlerMapping
 
initialize(ConfigurableListableBeanFactory) - Method in class org.springframework.integration.webflux.config.WebFluxIntegrationConfigurationInitializer
 
IntegrationHandlerResultHandler - Class in org.springframework.integration.webflux.inbound
A HandlerResultHandler implementation to handle the result of the WebFluxInboundEndpoint execution.
IntegrationHandlerResultHandler() - Constructor for class org.springframework.integration.webflux.inbound.IntegrationHandlerResultHandler
 
isClientSet() - Method in class org.springframework.integration.webflux.dsl.WebFluxMessageHandlerSpec
 
isHandler(Class<?>) - Method in class org.springframework.integration.webflux.inbound.WebFluxIntegrationRequestMappingHandlerMapping
 

O

onApplicationEvent(ContextRefreshedEvent) - Method in class org.springframework.integration.webflux.inbound.WebFluxIntegrationRequestMappingHandlerMapping
HttpRequestHandlingEndpointSupports may depend on auto-created requestChannels, so MVC Handlers detection should be postponed as late as possible.
onInit() - Method in class org.springframework.integration.webflux.inbound.WebFluxInboundEndpoint
 
org.springframework.integration.webflux.config - package org.springframework.integration.webflux.config
Provides classes for configuration - parsers, namespace handlers.
org.springframework.integration.webflux.dsl - package org.springframework.integration.webflux.dsl
Provides WebFlux Components support for Spring Integration Java DSL.
org.springframework.integration.webflux.inbound - package org.springframework.integration.webflux.inbound
Provides classes supporting inbound endpoints.
org.springframework.integration.webflux.outbound - package org.springframework.integration.webflux.outbound
Provides classes supporting outbound endpoints.
org.springframework.integration.webflux.support - package org.springframework.integration.webflux.support
Provides classes to support WebFlux endpoints.
outboundChannelAdapter(URI) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for one-way adapter based on provided URI.
outboundChannelAdapter(String) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for one-way adapter based on provided uri.
outboundChannelAdapter(Function<Message<P>, ?>) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for one-way adapter based on provided Function to evaluate target uri against request message.
outboundChannelAdapter(Expression) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for one-way adapter based on provided SpEL Expression to evaluate target uri against request message.
outboundChannelAdapter(URI, WebClient) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for one-way adapter based on provided URI and WebClient.
outboundChannelAdapter(String, WebClient) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for one-way adapter based on provided uri and WebClient.
outboundChannelAdapter(Function<Message<P>, ?>, WebClient) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for one-way adapter based on provided Function to evaluate target uri against request message and WebClient for HTTP exchanges.
outboundChannelAdapter(Expression, WebClient) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for one-way adapter based on provided SpEL Expression to evaluate target uri against request message and WebClient for HTTP exchanges.
outboundGateway(URI) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for request-reply gateway based on provided URI.
outboundGateway(String) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for request-reply gateway based on provided uri.
outboundGateway(Function<Message<P>, ?>) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for request-reply gateway based on provided Function to evaluate target uri against request message.
outboundGateway(Expression) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for request-reply gateway based on provided SpEL Expression to evaluate target uri against request message.
outboundGateway(URI, WebClient) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for request-reply gateway based on provided URI and WebClient.
outboundGateway(String, WebClient) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for request-reply gateway based on provided uri and WebClient.
outboundGateway(Function<Message<P>, ?>, WebClient) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for request-reply gateway based on provided Function to evaluate target uri against request message and WebClient for HTTP exchanges.
outboundGateway(Expression, WebClient) - Static method in class org.springframework.integration.webflux.dsl.WebFlux
Create an WebFluxMessageHandlerSpec builder for request-reply gateway based on provided SpEL Expression to evaluate target uri against request message and WebClient for HTTP exchanges.

P

postProcessBeforeDestruction(Object, String) - Method in class org.springframework.integration.webflux.inbound.WebFluxIntegrationRequestMappingHandlerMapping
 
postProcessBeforeInitialization(Object, String) - Method in class org.springframework.integration.webflux.inbound.WebFluxIntegrationRequestMappingHandlerMapping
 

R

reactiveAdapterRegistry(ReactiveAdapterRegistry) - Method in class org.springframework.integration.webflux.dsl.WebFluxInboundEndpointSpec
 
replyPayloadToFlux(boolean) - Method in class org.springframework.integration.webflux.dsl.WebFluxMessageHandlerSpec
The boolean flag to identify if the reply payload should be as a Flux from the response body or as resolved value from the Mono of the response body.
requestedContentTypeResolver(RequestedContentTypeResolver) - Method in class org.springframework.integration.webflux.dsl.WebFluxInboundEndpointSpec
 
requiresDestruction(Object) - Method in class org.springframework.integration.webflux.inbound.WebFluxIntegrationRequestMappingHandlerMapping
 

S

setBodyExtractor(BodyExtractor<?, ClientHttpResponse>) - Method in class org.springframework.integration.webflux.outbound.WebFluxRequestExecutingMessageHandler
Specify a BodyExtractor as an alternative to the expectedResponseType to allow to get low-level access to the received ClientHttpResponse.
setCodecConfigurer(ServerCodecConfigurer) - Method in class org.springframework.integration.webflux.inbound.WebFluxInboundEndpoint
A ServerCodecConfigurer for the request readers and response writers.
setReactiveAdapterRegistry(ReactiveAdapterRegistry) - Method in class org.springframework.integration.webflux.inbound.WebFluxInboundEndpoint
A registry of adapters to adapt a Reactive Streams Publisher to/from.
setReplyPayloadToFlux(boolean) - Method in class org.springframework.integration.webflux.outbound.WebFluxRequestExecutingMessageHandler
The boolean flag to identify if the reply payload should be as a Flux from the response body or as resolved value from the Mono of the response body.
setRequestedContentTypeResolver(RequestedContentTypeResolver) - Method in class org.springframework.integration.webflux.inbound.WebFluxInboundEndpoint
A strategy to resolve the requested media types for a ServerWebExchange.
supports(HandlerResult) - Method in class org.springframework.integration.webflux.inbound.IntegrationHandlerResultHandler
 

W

WebFlux - Class in org.springframework.integration.webflux.dsl
The WebFlux components Factory.
WebFluxContextUtils - Class in org.springframework.integration.webflux.support
Utility class for accessing WebFlux integration components from the BeanFactory.
WebFluxInboundEndpoint - Class in org.springframework.integration.webflux.inbound
A MessagingGatewaySupport implementation for Spring WebFlux HTTP requests execution.
WebFluxInboundEndpoint() - Constructor for class org.springframework.integration.webflux.inbound.WebFluxInboundEndpoint
 
WebFluxInboundEndpoint(boolean) - Constructor for class org.springframework.integration.webflux.inbound.WebFluxInboundEndpoint
 
WebFluxInboundEndpointParser - Class in org.springframework.integration.webflux.config
 
WebFluxInboundEndpointParser(boolean) - Constructor for class org.springframework.integration.webflux.config.WebFluxInboundEndpointParser
 
WebFluxInboundEndpointSpec - Class in org.springframework.integration.webflux.dsl
The HttpInboundEndpointSupportSpec implementation for the WebFluxInboundEndpoint.
WebFluxIntegrationConfigurationInitializer - Class in org.springframework.integration.webflux.config
The WebFlux Integration infrastructure beanFactory initializer.
WebFluxIntegrationConfigurationInitializer() - Constructor for class org.springframework.integration.webflux.config.WebFluxIntegrationConfigurationInitializer
 
WebFluxIntegrationRequestMappingHandlerMapping - Class in org.springframework.integration.webflux.inbound
The HandlerMapping implementation that detects and registers RequestMappingInfos for HttpRequestHandlingEndpointSupport from a Spring Integration HTTP configuration of <inbound-channel-adapter/> and <inbound-gateway/> elements.
WebFluxIntegrationRequestMappingHandlerMapping() - Constructor for class org.springframework.integration.webflux.inbound.WebFluxIntegrationRequestMappingHandlerMapping
 
WebFluxMessageHandlerSpec - Class in org.springframework.integration.webflux.dsl
The BaseHttpMessageHandlerSpec implementation for the WebFluxRequestExecutingMessageHandler.
WebFluxNamespaceHandler - Class in org.springframework.integration.webflux.config
Namespace handler for Spring Integration's webflux namespace.
WebFluxNamespaceHandler() - Constructor for class org.springframework.integration.webflux.config.WebFluxNamespaceHandler
 
WebFluxOutboundChannelAdapterParser - Class in org.springframework.integration.webflux.config
Parser for the 'outbound-channel-adapter' element of the webflux namespace.
WebFluxOutboundChannelAdapterParser() - Constructor for class org.springframework.integration.webflux.config.WebFluxOutboundChannelAdapterParser
 
WebFluxOutboundGatewayParser - Class in org.springframework.integration.webflux.config
Parser for the 'outbound-gateway' element of the webflux namespace.
WebFluxOutboundGatewayParser() - Constructor for class org.springframework.integration.webflux.config.WebFluxOutboundGatewayParser
 
WebFluxRequestExecutingMessageHandler - Class in org.springframework.integration.webflux.outbound
A MessageHandler implementation that executes HTTP requests by delegating to a Reactive WebClient instance.
WebFluxRequestExecutingMessageHandler(URI) - Constructor for class org.springframework.integration.webflux.outbound.WebFluxRequestExecutingMessageHandler
Create a handler that will send requests to the provided URI.
WebFluxRequestExecutingMessageHandler(String) - Constructor for class org.springframework.integration.webflux.outbound.WebFluxRequestExecutingMessageHandler
Create a handler that will send requests to the provided URI.
WebFluxRequestExecutingMessageHandler(Expression) - Constructor for class org.springframework.integration.webflux.outbound.WebFluxRequestExecutingMessageHandler
Create a handler that will send requests to the provided URI Expression.
WebFluxRequestExecutingMessageHandler(String, WebClient) - Constructor for class org.springframework.integration.webflux.outbound.WebFluxRequestExecutingMessageHandler
Create a handler that will send requests to the provided URI using a provided WebClient.
WebFluxRequestExecutingMessageHandler(Expression, WebClient) - Constructor for class org.springframework.integration.webflux.outbound.WebFluxRequestExecutingMessageHandler
Create a handler that will send requests to the provided URI using a provided WebClient.
A B C D E G H I O P R S W 
Skip navigation links