Class JdbcOutboundGateway

All Implemented Interfaces:
org.reactivestreams.Subscriber<Message<?>>, Aware, BeanClassLoaderAware, BeanFactoryAware, BeanNameAware, DisposableBean, InitializingBean, ApplicationContextAware, Ordered, ComponentSourceAware, ExpressionCapable, Orderable, MessageProducer, HeaderPropagationAware, IntegrationPattern, NamedComponent, IntegrationManagement, TrackableComponent, MessageHandler, reactor.core.CoreSubscriber<Message<?>>

@Deprecated(forRemoval=true, since="7.0") public class JdbcOutboundGateway extends JdbcOutboundGateway
Deprecated, for removal: This API element is subject to removal in a future version.
since 7.0 in favor of JdbcOutboundGateway
Since:
2.0
Author:
Dave Syer, Gunnar Hillert, Artem Bilan, Gary Russell
  • Constructor Details

    • JdbcOutboundGateway

      public JdbcOutboundGateway(DataSource dataSource, String updateQuery)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Construct an instance based on the provided DataSource and update SQL.
      Parameters:
      dataSource - the DataSource for execution.
      updateQuery - the query to execute.
    • JdbcOutboundGateway

      public JdbcOutboundGateway(DataSource dataSource, String updateQuery, String selectQuery)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Construct an instance based on the provided DataSource, select and update SQLs.
      Parameters:
      dataSource - the DataSource for execution.
      updateQuery - the update to execute.
      selectQuery - the select to execute.
    • JdbcOutboundGateway

      public JdbcOutboundGateway(JdbcOperations jdbcOperations, String updateQuery)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Construct an instance based on the provided JdbcOperations and update SQL.
      Parameters:
      jdbcOperations - the JdbcOperations for execution.
      updateQuery - the query to execute.
    • JdbcOutboundGateway

      public JdbcOutboundGateway(JdbcOperations jdbcOperations, String updateQuery, @Nullable String selectQuery)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Construct an instance based on the provided JdbcOperations, select and update SQLs.
      Parameters:
      jdbcOperations - the JdbcOperations for execution.
      updateQuery - the update to execute.
      selectQuery - the select to execute.