Class BaseHttpInboundEndpointSpec<S extends BaseHttpInboundEndpointSpec<S,E>,E extends HttpRequestHandlingEndpointSupport>
java.lang.Object
org.springframework.beans.factory.config.AbstractFactoryBean<T>
org.springframework.integration.dsl.IntegrationComponentSpec<S,G>
org.springframework.integration.dsl.MessagingGatewaySpec<S,E>
org.springframework.integration.http.dsl.HttpInboundEndpointSupportSpec<S,E>
org.springframework.integration.http.dsl.BaseHttpInboundEndpointSpec<S,E>
- Type Parameters:
S
- the targetBaseHttpInboundEndpointSpec
implementation type.E
- the targetHttpRequestHandlingEndpointSupport
implementation type.
- All Implemented Interfaces:
org.springframework.beans.factory.Aware
,org.springframework.beans.factory.BeanClassLoaderAware
,org.springframework.beans.factory.BeanFactoryAware
,org.springframework.beans.factory.DisposableBean
,org.springframework.beans.factory.FactoryBean<E>
,org.springframework.beans.factory.InitializingBean
,org.springframework.context.Lifecycle
,org.springframework.context.Phased
,org.springframework.context.SmartLifecycle
,org.springframework.integration.dsl.ComponentsRegistration
- Direct Known Subclasses:
HttpControllerEndpointSpec
,HttpRequestHandlerEndpointSpec
public abstract class BaseHttpInboundEndpointSpec<S extends BaseHttpInboundEndpointSpec<S,E>,E extends HttpRequestHandlingEndpointSupport> extends HttpInboundEndpointSupportSpec<S,E>
A base
MessagingGatewaySpec
for the
HttpRequestHandlingEndpointSupport
implementations.- Since:
- 5.0
-
Nested Class Summary
Nested classes/interfaces inherited from class org.springframework.integration.http.dsl.HttpInboundEndpointSupportSpec
HttpInboundEndpointSupportSpec.CrossOriginSpec, HttpInboundEndpointSupportSpec.RequestMappingSpec
-
Field Summary
Fields inherited from class org.springframework.integration.http.dsl.HttpInboundEndpointSupportSpec
headerExpressions, headerMapper, requestMapping
-
Constructor Summary
Constructors Modifier Constructor Description protected
BaseHttpInboundEndpointSpec(E endpoint, java.lang.String... path)
-
Method Summary
Modifier and Type Method Description S
mergeWithDefaultConverters(boolean mergeWithDefaultConverters)
Flag which determines if the default converters should be available after custom converters.S
messageConverters(org.springframework.http.converter.HttpMessageConverter<?>... messageConverters)
Set the message body converters to use.S
multipartResolver(org.springframework.web.multipart.MultipartResolver multipartResolver)
Specify theMultipartResolver
to use when checking requests.Methods inherited from class org.springframework.integration.http.dsl.HttpInboundEndpointSupportSpec
crossOrigin, extractReplyPayload, getComponentsToRegister, headerExpression, headerExpression, headerExpressions, headerFunction, headerMapper, mappedRequestHeaders, mappedResponseHeaders, payloadExpression, payloadExpression, payloadFunction, requestMapping, requestPayloadType, requestPayloadType, statusCodeExpression, statusCodeExpression, statusCodeFunction, validator
Methods inherited from class org.springframework.integration.dsl.MessagingGatewaySpec
autoStartup, errorChannel, errorChannel, errorOnTimeout, id, phase, replyChannel, replyChannel, replyMapper, replyTimeout, requestChannel, requestChannel, requestMapper, requestTimeout, shouldTrack
Methods inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
_this, createInstance, destroyInstance, doGet, get, getId, getObjectType, getPhase, isAutoStartup, isRunning, start, stop, stop
-
Constructor Details
-
Method Details
-
messageConverters
public S messageConverters(org.springframework.http.converter.HttpMessageConverter<?>... messageConverters)Set the message body converters to use. These converters are used to convert from and to HTTP requests and responses.- Parameters:
messageConverters
- The message converters.- Returns:
- the current Spec.
-
mergeWithDefaultConverters
Flag which determines if the default converters should be available after custom converters.- Parameters:
mergeWithDefaultConverters
- true to merge, false to replace.- Returns:
- the current Spec.
-
multipartResolver
Specify theMultipartResolver
to use when checking requests.- Parameters:
multipartResolver
- The multipart resolver.- Returns:
- the current Spec.
-