Class JdbcOutboundGateway
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.handler.MessageHandlerSupport
org.springframework.integration.handler.AbstractMessageHandler
org.springframework.integration.handler.AbstractMessageProducingHandler
org.springframework.integration.handler.AbstractReplyProducingMessageHandler
org.springframework.integration.jdbc.JdbcOutboundGateway
- All Implemented Interfaces:
org.reactivestreams.Subscriber<Message<?>>
,Aware
,BeanClassLoaderAware
,BeanFactoryAware
,BeanNameAware
,DisposableBean
,InitializingBean
,ApplicationContextAware
,Ordered
,ExpressionCapable
,Orderable
,MessageProducer
,HeaderPropagationAware
,IntegrationPattern
,NamedComponent
,IntegrationManagement
,TrackableComponent
,MessageHandler
,reactor.core.CoreSubscriber<Message<?>>
- Since:
- 2.0
- Author:
- Dave Syer, Gunnar Hillert, Artem Bilan, Gary Russell
-
Nested Class Summary
Nested classes/interfaces inherited from class org.springframework.integration.handler.AbstractReplyProducingMessageHandler
AbstractReplyProducingMessageHandler.RequestHandler
Nested classes/interfaces inherited from interface org.springframework.integration.support.management.IntegrationManagement
IntegrationManagement.ManagementOverrides
-
Field Summary
Fields inherited from class org.springframework.integration.handler.AbstractMessageProducingHandler
messagingTemplate
Fields inherited from class org.springframework.integration.context.IntegrationObjectSupport
EXPRESSION_PARSER, logger
Fields inherited from interface org.springframework.integration.support.management.IntegrationManagement
METER_PREFIX, RECEIVE_COUNTER_NAME, SEND_TIMER_NAME
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
ConstructorDescriptionJdbcOutboundGateway
(DataSource dataSource, String updateQuery) Construct an instance based on the providedDataSource
and update SQL.JdbcOutboundGateway
(DataSource dataSource, String updateQuery, String selectQuery) Construct an instance based on the providedDataSource
, select and update SQLs.JdbcOutboundGateway
(JdbcOperations jdbcOperations, String updateQuery) Construct an instance based on the providedJdbcOperations
and update SQL.JdbcOutboundGateway
(JdbcOperations jdbcOperations, String updateQuery, String selectQuery) Construct an instance based on the providedJdbcOperations
, select and update SQLs. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
doInit()
Subclasses may implement this method to provide component type information.protected Object
handleRequestMessage
(Message<?> requestMessage) Subclasses must implement this method to handle the request Message.void
setKeysGenerated
(boolean keysGenerated) Flag to indicate that the update query is an insert with auto-generated keys, which will be logged at debug level.void
setMaxRows
(Integer maxRows) The maximum number of rows to query.void
setReplySqlParameterSourceFactory
(SqlParameterSourceFactory sqlParameterSourceFactory) /** Set aSqlParameterSourceFactory
for select query.void
setRequestPreparedStatementSetter
(MessagePreparedStatementSetter requestPreparedStatementSetter) Set aMessagePreparedStatementSetter
for update query.void
setRequestSqlParameterSourceFactory
(SqlParameterSourceFactory sqlParameterSourceFactory) Set aSqlParameterSourceFactory
for update query.void
setRowMapper
(RowMapper<?> rowMapper) Set a select resultRowMapper
.Methods inherited from class org.springframework.integration.handler.AbstractReplyProducingMessageHandler
doInvokeAdvisedRequestHandler, getBeanClassLoader, getIntegrationPatternType, getRequiresReply, handleMessageInternal, hasAdviceChain, onInit, setAdviceChain, setBeanClassLoader, setRequiresReply
Methods inherited from class org.springframework.integration.handler.AbstractMessageProducingHandler
addNotPropagatedHeaders, createOutputMessage, getNotPropagatedHeaders, getOutputChannel, isAsync, messageBuilderForReply, produceOutput, resolveErrorChannel, sendErrorMessage, sendOutput, sendOutputs, setAsync, setNotPropagatedHeaders, setOutputChannel, setOutputChannelName, setSendTimeout, setupMessageProcessor, shouldCopyRequestHeaders, shouldSplitOutput, updateNotPropagatedHeaders
Methods inherited from class org.springframework.integration.handler.AbstractMessageHandler
handleMessage, onComplete, onError, onNext, onSubscribe, setObservationConvention
Methods inherited from class org.springframework.integration.handler.MessageHandlerSupport
buildSendTimer, destroy, getManagedName, getManagedType, getMetricsCaptor, getObservationRegistry, getOrder, getOverrides, isLoggingEnabled, isObserved, registerMetricsCaptor, registerObservationRegistry, sendTimer, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, shouldTrack
Methods inherited from class org.springframework.integration.context.IntegrationObjectSupport
afterPropertiesSet, extractTypeIfPossible, generateId, getApplicationContext, getApplicationContextId, getBeanDescription, getBeanFactory, getBeanName, getChannelResolver, getComponentName, getConversionService, getExpression, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, isInitialized, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface reactor.core.CoreSubscriber
currentContext
Methods inherited from interface org.springframework.integration.support.management.IntegrationManagement
getThisAs
Methods inherited from interface org.springframework.integration.support.context.NamedComponent
getBeanName, getComponentName
-
Constructor Details
-
JdbcOutboundGateway
Construct an instance based on the providedDataSource
and update SQL.- Parameters:
dataSource
- theDataSource
for execution.updateQuery
- the query to execute.
-
JdbcOutboundGateway
Construct an instance based on the providedDataSource
, select and update SQLs.- Parameters:
dataSource
- theDataSource
for execution.updateQuery
- the update to execute.selectQuery
- the select to execute.
-
JdbcOutboundGateway
Construct an instance based on the providedJdbcOperations
and update SQL.- Parameters:
jdbcOperations
- theJdbcOperations
for execution.updateQuery
- the query to execute.
-
JdbcOutboundGateway
Construct an instance based on the providedJdbcOperations
, select and update SQLs.- Parameters:
jdbcOperations
- theJdbcOperations
for execution.updateQuery
- the update to execute.selectQuery
- the select to execute.
-
-
Method Details
-
setMaxRows
The maximum number of rows to query. The value is set on the underlyingJdbcPollingChannelAdapter
. Also used to check before producing reply: if result has only one item andmaxRows
is not set or configured to1
, only that item is returned. Otherwise, the whole list. If not specified this value will default to1
. This parameter is only applicable if a selectQuery was provided. Null values are not permitted.- Parameters:
maxRows
- the number of rows to select. Must not be null.- Since:
- 5.1
- See Also:
-
setKeysGenerated
public void setKeysGenerated(boolean keysGenerated) Flag to indicate that the update query is an insert with auto-generated keys, which will be logged at debug level.- Parameters:
keysGenerated
- the flag value to set
-
setRequestSqlParameterSourceFactory
public void setRequestSqlParameterSourceFactory(SqlParameterSourceFactory sqlParameterSourceFactory) Set aSqlParameterSourceFactory
for update query.- Parameters:
sqlParameterSourceFactory
- theSqlParameterSourceFactory
to use.
-
setRequestPreparedStatementSetter
public void setRequestPreparedStatementSetter(MessagePreparedStatementSetter requestPreparedStatementSetter) Set aMessagePreparedStatementSetter
for update query.- Parameters:
requestPreparedStatementSetter
- theMessagePreparedStatementSetter
to use.
-
setReplySqlParameterSourceFactory
/** Set aSqlParameterSourceFactory
for select query.- Parameters:
sqlParameterSourceFactory
- theSqlParameterSourceFactory
to use.
-
setRowMapper
Set a select resultRowMapper
.- Parameters:
rowMapper
- theRowMapper
to use.
-
getComponentType
Description copied from class:IntegrationObjectSupport
Subclasses may implement this method to provide component type information.- Specified by:
getComponentType
in interfaceNamedComponent
- Overrides:
getComponentType
in classMessageHandlerSupport
-
doInit
protected void doInit()- Overrides:
doInit
in classAbstractReplyProducingMessageHandler
-
handleRequestMessage
Description copied from class:AbstractReplyProducingMessageHandler
Subclasses must implement this method to handle the request Message. The return value may be a Message, a MessageBuilder, or any plain Object. The base class will handle the final creation of a reply Message from any of those starting points. If the return value is null, the Message flow will end here.- Specified by:
handleRequestMessage
in classAbstractReplyProducingMessageHandler
- Parameters:
requestMessage
- The request message.- Returns:
- The result of handling the message, or
null
.
-