|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.jms.support.JmsAccessor org.springframework.jms.support.destination.JmsDestinationAccessor org.springframework.jms.listener.AbstractJmsListeningContainer
public abstract class AbstractJmsListeningContainer
Common base class for all containers which need to implement listening
based on a JMS Connection (either shared or freshly obtained for each attempt).
Inherits basic Connection and Session configuration handling from the
JmsAccessor
base class.
This class provides basic lifecycle management, in particular management
of a shared JMS Connection. Subclasses are supposed to plug into this
lifecycle, implementing the sharedConnectionEnabled()
as well
as the doInitialize()
and doShutdown()
template methods.
This base class does not assume any specific listener programming model or listener invoker mechanism. It just provides the general runtime lifecycle management needed for any kind of JMS-based listening mechanism that operates on a JMS Connection/Session.
For a concrete listener programming model, check out the
AbstractMessageListenerContainer
subclass. For a concrete listener
invoker mechanism, check out the DefaultMessageListenerContainer
class.
sharedConnectionEnabled()
,
doInitialize()
,
doShutdown()
Nested Class Summary | |
---|---|
static class |
AbstractJmsListeningContainer.SharedConnectionNotInitializedException
Exception that indicates that the initial setup of this container's shared JMS Connection failed. |
Field Summary | |
---|---|
protected Object |
lifecycleMonitor
|
protected Object |
sharedConnectionMonitor
|
Fields inherited from class org.springframework.jms.support.JmsAccessor |
---|
logger |
Constructor Summary | |
---|---|
AbstractJmsListeningContainer()
|
Method Summary | |
---|---|
void |
afterPropertiesSet()
Delegates to validateConfiguration() and initialize() . |
protected Connection |
createSharedConnection()
Create a shared Connection for this container. |
void |
destroy()
Calls shutdown() when the BeanFactory destroys the container instance. |
protected abstract void |
doInitialize()
Register any invokers within this container. |
protected void |
doRescheduleTask(Object task)
Reschedule the given task object immediately. |
protected abstract void |
doShutdown()
Close the registered invokers. |
protected void |
doStart()
Start the shared Connection, if any, and notify all invoker tasks. |
protected void |
doStop()
Notify all invoker tasks and stop the shared Connection, if any. |
protected void |
establishSharedConnection()
Establish a shared Connection for this container. |
protected String |
getBeanName()
Return the bean name that this listener container has been assigned in its containing bean factory, if any. |
String |
getClientId()
Return the JMS client ID for the shared Connection created and used by this container, if any. |
protected Connection |
getSharedConnection()
Return the shared JMS Connection maintained by this container. |
void |
initialize()
Initialize this container. |
boolean |
isActive()
Return whether this container is currently active, that is, whether it has been set up but not shut down yet. |
boolean |
isRunning()
Return whether this container is currently running, that is, whether it has been started and not stopped yet. |
protected void |
prepareSharedConnection(Connection connection)
Prepare the given Connection, which is about to be registered as shared Connection for this container. |
protected void |
refreshSharedConnection()
Refresh the shared Connection that this container holds. |
protected boolean |
rescheduleTaskIfNecessary(Object task)
Take the given task object and reschedule it, either immediately if this container is currently running, or later once this container has been restarted. |
void |
setAutoStartup(boolean autoStartup)
Set whether to automatically start the container after initialization. |
void |
setBeanName(String beanName)
Set the name of the bean in the bean factory that created this bean. |
void |
setClientId(String clientId)
Specify the JMS client id for a shared Connection created and used by this container. |
protected abstract boolean |
sharedConnectionEnabled()
Return whether a shared JMS Connection should be maintained by this container base class. |
void |
shutdown()
Stop the shared Connection, call doShutdown() ,
and close this container. |
void |
start()
Start this container. |
protected void |
startSharedConnection()
Start the shared Connection. |
void |
stop()
Stop this container. |
protected void |
stopSharedConnection()
Stop the shared Connection. |
protected void |
validateConfiguration()
Validate the configuration of this container. |
protected void |
waitWhileNotRunning()
Wait while this container is not running. |
Methods inherited from class org.springframework.jms.support.destination.JmsDestinationAccessor |
---|
getDestinationResolver, isPubSubDomain, resolveDestinationName, setDestinationResolver, setPubSubDomain |
Methods inherited from class org.springframework.jms.support.JmsAccessor |
---|
convertJmsAccessException, createConnection, createSession, getConnectionFactory, getSessionAcknowledgeMode, isClientAcknowledge, isSessionTransacted, setConnectionFactory, setSessionAcknowledgeMode, setSessionAcknowledgeModeName, setSessionTransacted |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected final Object sharedConnectionMonitor
protected final Object lifecycleMonitor
Constructor Detail |
---|
public AbstractJmsListeningContainer()
Method Detail |
---|
public void setClientId(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)
,
JmsAccessor.setConnectionFactory(javax.jms.ConnectionFactory)
public String getClientId()
public void setAutoStartup(boolean autoStartup)
Default is "true"; set this to "false" to allow for manual startup
through the start()
method.
public void setBeanName(String beanName)
BeanNameAware
Invoked after population of normal bean properties but before an
init callback such as InitializingBean.afterPropertiesSet()
or a custom init-method.
setBeanName
in interface BeanNameAware
beanName
- the name of the bean in the factory.
Note that this name is the actual bean name used in the factory, which may
differ from the originally specified name: in particular for inner bean
names, the actual bean name might have been made unique through appending
"#..." suffixes. Use the BeanFactoryUtils.originalBeanName(String)
method to extract the original bean name (without suffix), if desired.protected final String getBeanName()
public void afterPropertiesSet()
validateConfiguration()
and initialize()
.
afterPropertiesSet
in interface InitializingBean
afterPropertiesSet
in class JmsAccessor
protected void validateConfiguration()
The default implementation is empty. To be overridden in subclasses.
public void initialize() throws JmsException
Creates a JMS Connection, starts the Connection
(if "autoStartup"
hasn't been turned off),
and calls doInitialize()
.
JmsException
- if startup failedprotected void establishSharedConnection() throws JMSException
The default implementation delegates to createSharedConnection()
,
which does one immediate attempt and throws an exception if it fails.
Can be overridden to have a recovery process in place, retrying
until a Connection can be successfully established.
JMSException
- if thrown by JMS API methodsprotected final void refreshSharedConnection() throws JMSException
Called on startup and also after an infrastructure exception that occurred during invoker setup and/or execution.
JMSException
- if thrown by JMS API methodsprotected Connection createSharedConnection() throws JMSException
The default implementation creates a standard Connection
and prepares it through prepareSharedConnection(javax.jms.Connection)
.
JMSException
- if the creation failedprotected void prepareSharedConnection(Connection connection) throws JMSException
The default implementation sets the specified client id, if any. Subclasses can override this to apply further settings.
connection
- the Connection to prepare
JMSException
- if the preparation efforts failedgetClientId()
protected final Connection getSharedConnection()
null
)
IllegalStateException
- if this container does not maintain a
shared Connection, or if the Connection hasn't been initialized yetsharedConnectionEnabled()
public void destroy()
shutdown()
when the BeanFactory destroys the container instance.
destroy
in interface DisposableBean
shutdown()
public void shutdown() throws JmsException
doShutdown()
,
and close this container.
JmsException
- if shutdown failedpublic final boolean isActive()
public void start() throws JmsException
start
in interface Lifecycle
JmsException
- if starting faileddoStart()
protected void doStart() throws JMSException
JMSException
- if thrown by JMS API methodsstartSharedConnection()
protected void startSharedConnection() throws JMSException
JMSException
- if thrown by JMS API methodsConnection.start()
public void stop() throws JmsException
stop
in interface Lifecycle
JmsException
- if stopping faileddoStop()
protected void doStop() throws JMSException
JMSException
- if thrown by JMS API methodsstopSharedConnection()
protected void stopSharedConnection() throws JMSException
JMSException
- if thrown by JMS API methodsConnection.start()
public final boolean isRunning()
isRunning
in interface Lifecycle
protected final void waitWhileNotRunning()
To be called by asynchronous tasks that want to block while the container is in stopped state.
protected final boolean rescheduleTaskIfNecessary(Object task)
If this container has already been shut down, the task will not get rescheduled at all.
task
- the task object to reschedule
doRescheduleTask(java.lang.Object)
protected void doRescheduleTask(Object task)
To be implemented by subclasses if they ever call
rescheduleTaskIfNecessary
.
This implementation throws an UnsupportedOperationException.
task
- the task object to reschedulerescheduleTaskIfNecessary(java.lang.Object)
protected abstract boolean sharedConnectionEnabled()
getSharedConnection()
protected abstract void doInitialize() throws JMSException
Subclasses need to implement this method for their specific invoker management process.
A shared JMS Connection, if any, will already have been started at this point.
JMSException
- if registration failedgetSharedConnection()
protected abstract void doShutdown() throws JMSException
Subclasses need to implement this method for their specific invoker management process.
A shared JMS Connection, if any, will automatically be closed afterwards.
JMSException
- if shutdown failedshutdown()
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |