public class SingleConnectionFactory extends java.lang.Object implements javax.jms.ConnectionFactory, javax.jms.QueueConnectionFactory, javax.jms.TopicConnectionFactory, javax.jms.ExceptionListener, InitializingBean, DisposableBean
createConnection()
calls, and ignores calls to
Connection.close()
. According to the JMS Connection
model, this is perfectly thread-safe (in contrast to e.g. JDBC). The
shared Connection can be automatically recovered in case of an Exception.
You can either pass in a specific JMS Connection directly or let this factory lazily create a Connection via a given target ConnectionFactory. This factory generally works with JMS 1.1 as well as the JMS 1.0.2 API.
Note that when using the JMS 1.0.2 API, this ConnectionFactory will switch
into queue/topic mode according to the JMS API methods used at runtime:
createQueueConnection
and createTopicConnection
will
lead to queue/topic mode, respectively; generic createConnection
calls will lead to a JMS 1.1 connection which is able to serve both modes.
Useful for testing and standalone environments in order to keep using the
same Connection for multiple JmsTemplate
calls, without having a pooling ConnectionFactory underneath. This may span
any number of transactions, even concurrently executing transactions.
Note that Spring's message listener containers support the use of a shared Connection within each listener container instance. Using SingleConnectionFactory in combination only really makes sense for sharing a single JMS Connection across multiple listener containers.
JmsTemplate
,
SimpleMessageListenerContainer
,
DefaultMessageListenerContainer.setCacheLevel(int)
Modifier and Type | Field and Description |
---|---|
protected org.apache.commons.logging.Log |
logger |
Constructor and Description |
---|
SingleConnectionFactory()
Create a new SingleConnectionFactory for bean-style usage.
|
SingleConnectionFactory(javax.jms.Connection target)
Create a new SingleConnectionFactory that always returns the given Connection.
|
SingleConnectionFactory(javax.jms.ConnectionFactory targetConnectionFactory)
Create a new SingleConnectionFactory that always returns a single
Connection that it will lazily create via the given target
ConnectionFactory.
|
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet()
Make sure a Connection or ConnectionFactory has been set.
|
protected void |
closeConnection(javax.jms.Connection con)
Close the given Connection.
|
javax.jms.Connection |
createConnection() |
javax.jms.Connection |
createConnection(java.lang.String username,
java.lang.String password) |
javax.jms.QueueConnection |
createQueueConnection() |
javax.jms.QueueConnection |
createQueueConnection(java.lang.String username,
java.lang.String password) |
protected javax.jms.Session |
createSession(javax.jms.Connection con,
java.lang.Integer mode)
Create a default Session for this ConnectionFactory,
adaptign to JMS 1.0.2 style queue/topic mode if necessary.
|
javax.jms.TopicConnection |
createTopicConnection() |
javax.jms.TopicConnection |
createTopicConnection(java.lang.String username,
java.lang.String password) |
void |
destroy()
Close the underlying shared connection.
|
protected javax.jms.Connection |
doCreateConnection()
Create a JMS Connection via this template's ConnectionFactory.
|
protected java.lang.String |
getClientId()
Return a JMS client ID for the single Connection created and exposed
by this ConnectionFactory, if any.
|
protected javax.jms.ExceptionListener |
getExceptionListener()
Return the JMS ExceptionListener implementation that should be registered
with with the single Connection created by this factory, if any.
|
protected javax.jms.Session |
getSession(javax.jms.Connection con,
java.lang.Integer mode)
Template method for obtaining a (potentially cached) Session.
|
protected javax.jms.Connection |
getSharedConnectionProxy(javax.jms.Connection target)
Wrap the given Connection with a proxy that delegates every method call to it
but suppresses close calls.
|
javax.jms.ConnectionFactory |
getTargetConnectionFactory()
Return the target ConnectionFactory which will be used to lazily
create a single Connection, if any.
|
void |
initConnection()
Initialize the underlying shared Connection.
|
protected boolean |
isReconnectOnException()
Return whether the single Connection should be renewed when
a JMSException is reported by the underlying Connection.
|
void |
onException(javax.jms.JMSException ex)
Exception listener callback that renews the underlying single Connection.
|
protected void |
prepareConnection(javax.jms.Connection con)
Prepare the given Connection before it is exposed.
|
void |
resetConnection()
Reset the underlying shared Connection, to be reinitialized on next access.
|
void |
setClientId(java.lang.String clientId)
Specify a JMS client ID for the single Connection created and exposed
by this ConnectionFactory.
|
void |
setExceptionListener(javax.jms.ExceptionListener exceptionListener)
Specify an JMS ExceptionListener implementation that should be
registered with with the single Connection created by this factory.
|
void |
setReconnectOnException(boolean reconnectOnException)
Specify whether the single Connection should be reset (to be subsequently renewed)
when a JMSException is reported by the underlying Connection.
|
void |
setTargetConnectionFactory(javax.jms.ConnectionFactory targetConnectionFactory)
Set the target ConnectionFactory which will be used to lazily
create a single Connection.
|
public SingleConnectionFactory()
public SingleConnectionFactory(javax.jms.Connection target)
target
- the single Connectionpublic SingleConnectionFactory(javax.jms.ConnectionFactory targetConnectionFactory)
targetConnectionFactory
- the target ConnectionFactorypublic void setTargetConnectionFactory(javax.jms.ConnectionFactory targetConnectionFactory)
public javax.jms.ConnectionFactory getTargetConnectionFactory()
public void setClientId(java.lang.String clientId)
Note that client IDs need to be unique among all active Connections of the underlying JMS provider. Furthermore, a client ID can only be assigned if the original ConnectionFactory hasn't already assigned one.
Connection.setClientID(java.lang.String)
,
setTargetConnectionFactory(javax.jms.ConnectionFactory)
protected java.lang.String getClientId()
public void setExceptionListener(javax.jms.ExceptionListener exceptionListener)
setReconnectOnException(boolean)
protected javax.jms.ExceptionListener getExceptionListener()
public void setReconnectOnException(boolean reconnectOnException)
Default is "false". Switch this to "true" to automatically trigger recovery based on your JMS provider's exception notifications.
Internally, this will lead to a special JMS ExceptionListener (this SingleConnectionFactory itself) being registered with the underlying Connection. This can also be combined with a user-specified ExceptionListener, if desired.
protected boolean isReconnectOnException()
public void afterPropertiesSet()
afterPropertiesSet
in interface InitializingBean
public javax.jms.Connection createConnection() throws javax.jms.JMSException
createConnection
in interface javax.jms.ConnectionFactory
javax.jms.JMSException
public javax.jms.Connection createConnection(java.lang.String username, java.lang.String password) throws javax.jms.JMSException
createConnection
in interface javax.jms.ConnectionFactory
javax.jms.JMSException
public javax.jms.QueueConnection createQueueConnection() throws javax.jms.JMSException
createQueueConnection
in interface javax.jms.QueueConnectionFactory
javax.jms.JMSException
public javax.jms.QueueConnection createQueueConnection(java.lang.String username, java.lang.String password) throws javax.jms.JMSException
createQueueConnection
in interface javax.jms.QueueConnectionFactory
javax.jms.JMSException
public javax.jms.TopicConnection createTopicConnection() throws javax.jms.JMSException
createTopicConnection
in interface javax.jms.TopicConnectionFactory
javax.jms.JMSException
public javax.jms.TopicConnection createTopicConnection(java.lang.String username, java.lang.String password) throws javax.jms.JMSException
createTopicConnection
in interface javax.jms.TopicConnectionFactory
javax.jms.JMSException
public void initConnection() throws javax.jms.JMSException
Closes and reinitializes the Connection if an underlying Connection is present already.
javax.jms.JMSException
- if thrown by JMS API methodspublic void onException(javax.jms.JMSException ex)
onException
in interface javax.jms.ExceptionListener
public void destroy()
As this bean implements DisposableBean, a bean factory will automatically invoke this on destruction of its cached singletons.
destroy
in interface DisposableBean
public void resetConnection()
protected javax.jms.Connection doCreateConnection() throws javax.jms.JMSException
javax.jms.JMSException
- if thrown by JMS API methodsprotected void prepareConnection(javax.jms.Connection con) throws javax.jms.JMSException
The default implementation applies ExceptionListener and client id. Can be overridden in subclasses.
con
- the Connection to preparejavax.jms.JMSException
- if thrown by JMS API methodssetExceptionListener(javax.jms.ExceptionListener)
,
setReconnectOnException(boolean)
protected javax.jms.Session getSession(javax.jms.Connection con, java.lang.Integer mode) throws javax.jms.JMSException
The default implementation always returns null
.
Subclasses may override this for exposing specific Session handles,
possibly delegating to createSession(javax.jms.Connection, java.lang.Integer)
for the creation of raw
Session objects that will then get wrapped and returned from here.
con
- the JMS Connection to operate onmode
- the Session acknowledgement mode
(Session.TRANSACTED
or one of the common modes)null
to indicate
creation of a raw standard Sessionjavax.jms.JMSException
- if thrown by the JMS APIprotected javax.jms.Session createSession(javax.jms.Connection con, java.lang.Integer mode) throws javax.jms.JMSException
con
- the JMS Connection to operate onmode
- the Session acknowledgement mode
(Session.TRANSACTED
or one of the common modes)javax.jms.JMSException
- if thrown by the JMS APIprotected void closeConnection(javax.jms.Connection con)
con
- the Connection to closeprotected javax.jms.Connection getSharedConnectionProxy(javax.jms.Connection target)
target
- the original Connection to wrap