Class StoredProcMessageHandler
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.handler.MessageHandlerSupport
org.springframework.integration.handler.AbstractMessageHandler
org.springframework.integration.jdbc.outbound.StoredProcMessageHandler
org.springframework.integration.jdbc.StoredProcMessageHandler
- All Implemented Interfaces:
- org.reactivestreams.Subscriber<Message<?>>,- Aware,- BeanFactoryAware,- BeanNameAware,- DisposableBean,- InitializingBean,- ApplicationContextAware,- Ordered,- ComponentSourceAware,- ExpressionCapable,- Orderable,- IntegrationPattern,- NamedComponent,- IntegrationManagement,- TrackableComponent,- MessageHandler,- reactor.core.CoreSubscriber<Message<?>>
@Deprecated(forRemoval=true,
            since="7.0")
public class StoredProcMessageHandler
extends StoredProcMessageHandler
Deprecated, for removal: This API element is subject to removal in a future version.
A message handler that executes Stored Procedures for update purposes.
 
Stored procedure parameter values are by default automatically extracted from the Payload if the payload's bean properties match the parameters of the Stored Procedure.
 This may be sufficient for basic use cases. For more sophisticated options
 consider passing in one or more
 ProcedureParameter.
 
 If you need to handle the return parameters of the called stored procedure
 explicitly, please consider using a StoredProcOutboundGateway instead.
 
 Also, if you need to execute SQL Functions, please also use the
 StoredProcOutboundGateway.
 As functions are typically used to look up values, only,
 the Stored Procedure message handler purposefully does not support SQL function calls.
- Since:
- 2.1
- Author:
- Gunnar Hillert, Gary Russell, Artem Bilan
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.springframework.integration.support.management.IntegrationManagementIntegrationManagement.ManagementOverrides
- 
Field SummaryFields inherited from class org.springframework.integration.context.IntegrationObjectSupportEXPRESSION_PARSER, loggerFields inherited from interface org.springframework.integration.support.management.IntegrationManagementMETER_PREFIX, RECEIVE_COUNTER_NAME, SEND_TIMER_NAMEFields inherited from interface org.springframework.core.OrderedHIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
- 
Constructor SummaryConstructorsConstructorDescriptionStoredProcMessageHandler(StoredProcExecutor storedProcExecutor) Deprecated, for removal: This API element is subject to removal in a future version.Constructor passing in theStoredProcExecutor.
- 
Method SummaryMethods inherited from class org.springframework.integration.jdbc.outbound.StoredProcMessageHandlergetComponentType, handleMessageInternalMethods inherited from class org.springframework.integration.handler.AbstractMessageHandlerhandleMessage, onComplete, onError, onNext, onSubscribe, setObservationConventionMethods inherited from class org.springframework.integration.handler.MessageHandlerSupportbuildSendTimer, destroy, getIntegrationPatternType, getManagedName, getManagedType, getMetricsCaptor, getObservationRegistry, getOrder, getOverrides, isLoggingEnabled, isObserved, registerMetricsCaptor, registerObservationRegistry, sendTimer, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, shouldTrackMethods inherited from class org.springframework.integration.context.IntegrationObjectSupportafterPropertiesSet, extractTypeIfPossible, generateId, getApplicationContext, getApplicationContextId, getBeanDescription, getBeanFactory, getBeanName, getChannelResolver, getComponentDescription, getComponentName, getComponentSource, getConversionService, getExpression, getIntegrationProperties, getMessageBuilderFactory, getTaskScheduler, isInitialized, onInit, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentDescription, setComponentName, setComponentSource, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toStringMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface reactor.core.CoreSubscribercurrentContextMethods inherited from interface org.springframework.integration.support.management.IntegrationManagementgetThisAsMethods inherited from interface org.springframework.integration.support.context.NamedComponentgetBeanName, getComponentName
- 
Constructor Details- 
StoredProcMessageHandlerDeprecated, for removal: This API element is subject to removal in a future version.Constructor passing in theStoredProcExecutor.- Parameters:
- storedProcExecutor- Must not be null.
 
 
- 
StoredProcMessageHandler