org.springframework.jms.connection |
Provides a PlatformTransactionManager implementation for a single
JMS ConnectionFactory, and a SingleConnectionFactory adapter.
|
Java Source File Name | Type | Comment |
ChainedExceptionListener.java | Class | Implementation of the JMS ExceptionListener interface that supports chaining,
allowing the addition of multiple ExceptionListener instances in order. |
ConnectionFactoryUtils.java | Class | Helper class for managing a JMS
javax.jms.ConnectionFactory , in particular
for obtaining transactional JMS resources for a given ConnectionFactory.
Mainly for internal use within the framework. |
DelegatingConnectionFactory.java | Class | javax.jms.ConnectionFactory implementation that delegates all calls
to a given target
javax.jms.ConnectionFactory . |
JmsResourceHolder.java | Class | Connection holder, wrapping a JMS Connection and a JMS Session. |
JmsTransactionManager.java | Class | org.springframework.transaction.PlatformTransactionManager implementation
for a single JMS
javax.jms.ConnectionFactory . |
JmsTransactionManager102.java | Class | A subclass of JmsTransactionManager that uses the JMS 1.0.2 specification,
rather than the JMS 1.1 methods used by JmsTransactionManager itself. |
SessionProxy.java | Interface | Subinterface of
javax.jms.Session to be implemented by
Session proxies. |
SingleConnectionFactory.java | Class | A JMS ConnectionFactory adapter that returns the same Connection on all
createConnection calls, and ignores calls to
Connection.close() . |
SingleConnectionFactory102.java | Class | A subclass of SingleConnectionFactory that uses the JMS 1.0.2 specification,
rather than the JMS 1.1 methods used by SingleConnectionFactory itself. |
SmartConnectionFactory.java | Interface | Extension of the javax.jms.ConnectionFactory interface,
indicating how to release Connections obtained from it. |
SynchedLocalTransactionFailedException.java | Class | Exception thrown when a synchronized local transaction failed to complete
(after the main transaction has already completed). |
TransactionAwareConnectionFactoryProxy.java | Class | Proxy for a target JMS
javax.jms.ConnectionFactory , adding awareness of
Spring-managed transactions. |
UserCredentialsConnectionFactoryAdapter.java | Class | An adapter for a target JMS
javax.jms.ConnectionFactory , applying the
given user credentials to every standard createConnection() call,
that is, implicitly invoking createConnection(username, password)
on the target. |