JMS ConnectionFactory and JDBC
DataSource - with a special "deferred connection proxy" wrapper which is smart to use as underlying DataSource for
the SQL-oriented JmsMatsTransactionManagers, as it elides transactions if the connection is not actually
employed within an initiation or stage processing.See: Description
| Interface | Description |
|---|---|
| DeferredConnectionProxyDataSourceWrapper.DeferredConnectionProxy |
Provides a method to query whether the Connection actually was gotten.
|
| Class | Description |
|---|---|
| ConnectionFactoryWrapper |
A base Wrapper for a JMS
ConnectionFactory, which simply implements ConnectionFactory, takes a
ConnectionFactory instance and forwards all calls to that. |
| DataSourceWrapper |
A base Wrapper for a JDBC
DataSource, which simply implements DataSource, takes a DataSource instance and
forwards all calls to that. |
| DeferredConnectionProxyDataSourceWrapper |
DataSource wrapper which returns thin Connection proxies (currently employing Java's "dynamic proxy" functionality)
which do not actually fetch a Connection until it is needed.
|
JMS ConnectionFactory and JDBC
DataSource - with a special "deferred connection proxy" wrapper which is smart to use as underlying DataSource for
the SQL-oriented JmsMatsTransactionManagers, as it elides transactions if the connection is not actually
employed within an initiation or stage processing.