|
Spring Integration | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.integration.jdbc.JdbcPollingChannelAdapter
public class JdbcPollingChannelAdapter
A polling channel adapter that creates messages from the payload returned by executing a select query. Optionally an update can be executed after the select in order to update processed rows.
Constructor Summary | |
---|---|
JdbcPollingChannelAdapter(DataSource dataSource,
String selectQuery)
Constructor taking DataSource from which the DB Connection can be
obtained and the select query to execute to retrieve new rows. |
|
JdbcPollingChannelAdapter(JdbcOperations jdbcOperations,
String selectQuery)
Constructor taking JdbcOperations instance to use for query
execution and the select query to execute to retrieve new rows. |
Method Summary | |
---|---|
protected List<?> |
doPoll(SqlParameterSource sqlQueryParameterSource)
|
Message<Object> |
receive()
Executes the query. |
void |
setMaxRowsPerPoll(int maxRows)
The maximum number of rows to pull out of the query results per poll (if greater than zero, otherwise all rows will be packed into the outgoing message). |
void |
setRowMapper(RowMapper<?> rowMapper)
|
void |
setSelectSqlParameterSource(SqlParameterSource sqlQueryParameterSource)
A source of parameters for the select query used for polling. |
void |
setUpdatePerRow(boolean updatePerRow)
|
void |
setUpdateSql(String updateSql)
|
void |
setUpdateSqlParameterSourceFactory(SqlParameterSourceFactory sqlParameterSourceFactory)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JdbcPollingChannelAdapter(DataSource dataSource, String selectQuery)
DataSource
from which the DB Connection can be
obtained and the select query to execute to retrieve new rows.
dataSource
- used to create a SimpleJdbcTemplate
selectQuery
- query to executepublic JdbcPollingChannelAdapter(JdbcOperations jdbcOperations, String selectQuery)
JdbcOperations
instance to use for query
execution and the select query to execute to retrieve new rows.
jdbcOperations
- instance to use for query executionselectQuery
- query to executeMethod Detail |
---|
public void setRowMapper(RowMapper<?> rowMapper)
public void setUpdateSql(String updateSql)
public void setUpdatePerRow(boolean updatePerRow)
public void setUpdateSqlParameterSourceFactory(SqlParameterSourceFactory sqlParameterSourceFactory)
public void setSelectSqlParameterSource(SqlParameterSource sqlQueryParameterSource)
sqlQueryParameterSource
- the sql query parameter source to setpublic void setMaxRowsPerPoll(int maxRows)
maxRows
- the max rows to setpublic Message<Object> receive()
null
.
receive
in interface MessageSource<Object>
protected List<?> doPoll(SqlParameterSource sqlQueryParameterSource)
|
Spring Integration | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |