|
|||||||||
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 org.springframework.jms.listener.AbstractMessageListenerContainer org.springframework.jms.listener.AbstractPollingMessageListenerContainer
public abstract class AbstractPollingMessageListenerContainer
Base class for listener container implementations which are based on polling.
Provides support for listener handling based on MessageConsumer
,
optionally participating in externally managed transactions.
This listener container variant is built for repeated polling attempts,
each invoking the receiveAndExecute(java.lang.Object, javax.jms.Session, javax.jms.MessageConsumer)
method. The MessageConsumer used
may be reobtained fo reach attempt or cached inbetween attempts; this is up
to the concrete implementation. The receive timeout for each attempt can be
configured through the "receiveTimeout"
property.
The underlying mechanism is based on standard JMS MessageConsumer handling,
which is perfectly compatible with both native JMS and JMS in a J2EE environment.
Neither the JMS MessageConsumer.setMessageListener
facility
nor the JMS ServerSessionPool facility is required. A further advantage
of this approach is full control over the listening process, allowing for
custom scaling and throttling and of concurrent message processing
(which is up to concrete subclasses).
Message reception and listener execution can automatically be wrapped
in transactions through passing a Spring
PlatformTransactionManager
into the
"transactionManager"
property. This will usually
be a JtaTransactionManager
in a
J2EE enviroment, in combination with a JTA-aware JMS ConnectionFactory obtained
from JNDI (check your J2EE server's documentation).
This base class does not assume any specific mechanism for asynchronous
execution of polling invokers. Check out DefaultMessageListenerContainer
for a concrete implementation which is based on Spring's
TaskExecutor
abstraction,
including dynamic scaling of concurrent consumers and automatic self recovery.
createListenerConsumer(javax.jms.Session)
,
receiveAndExecute(java.lang.Object, javax.jms.Session, javax.jms.MessageConsumer)
,
setTransactionManager(org.springframework.transaction.PlatformTransactionManager)
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.springframework.jms.listener.AbstractJmsListeningContainer |
---|
AbstractJmsListeningContainer.SharedConnectionNotInitializedException |
Field Summary | |
---|---|
static long |
DEFAULT_RECEIVE_TIMEOUT
The default receive timeout: 1000 ms = 1 second. |
Fields inherited from class org.springframework.jms.listener.AbstractJmsListeningContainer |
---|
lifecycleMonitor, sharedConnectionMonitor |
Fields inherited from class org.springframework.jms.support.JmsAccessor |
---|
logger |
Constructor Summary | |
---|---|
AbstractPollingMessageListenerContainer()
|
Method Summary | |
---|---|
protected MessageConsumer |
createConsumer(Session session,
Destination destination)
Create a JMS MessageConsumer for the given Session and Destination. |
protected MessageConsumer |
createListenerConsumer(Session session)
Create a MessageConsumer for the given JMS Session, registering a MessageListener for the specified listener. |
protected boolean |
doReceiveAndExecute(Object invoker,
Session session,
MessageConsumer consumer,
TransactionStatus status)
Actually execute the listener for a message received from the given consumer, fetching all requires resources and invoking the listener. |
protected Connection |
getConnection(JmsResourceHolder holder)
Fetch an appropriate Connection from the given JmsResourceHolder. |
protected Session |
getSession(JmsResourceHolder holder)
Fetch an appropriate Session from the given JmsResourceHolder. |
protected PlatformTransactionManager |
getTransactionManager()
Return the Spring PlatformTransactionManager to use for transactional wrapping of message reception plus listener execution. |
void |
initialize()
Initialize this container. |
protected boolean |
isPubSubNoLocal()
Return whether to inhibit the delivery of messages published by its own connection. |
protected boolean |
isSessionLocallyTransacted(Session session)
This implementation checks whether the Session is externally synchronized. |
protected void |
messageReceived(Object invoker,
Session session)
Template method that gets called right when a new message has been received, before attempting to process it. |
protected void |
noMessageReceived(Object invoker,
Session session)
Template method that gets called when no message has been received, before returning to the receive loop again. |
protected boolean |
receiveAndExecute(Object invoker,
Session session,
MessageConsumer consumer)
Execute the listener for a message received from the given consumer, wrapping the entire operation in an external transaction if demanded. |
protected Message |
receiveMessage(MessageConsumer consumer)
Receive a message from the given consumer. |
void |
setPubSubNoLocal(boolean pubSubNoLocal)
Set whether to inhibit the delivery of messages published by its own connection. |
void |
setReceiveTimeout(long receiveTimeout)
Set the timeout to use for receive calls, in milliseconds. |
void |
setSessionTransacted(boolean sessionTransacted)
Set the transaction mode that is used when creating a JMS Session . |
void |
setTransactionManager(PlatformTransactionManager transactionManager)
Specify the Spring PlatformTransactionManager
to use for transactional wrapping of message reception plus listener execution. |
void |
setTransactionName(String transactionName)
Specify the transaction name to use for transactional wrapping. |
void |
setTransactionTimeout(int transactionTimeout)
Specify the transaction timeout to use for transactional wrapping, in seconds. |
protected boolean |
shouldCommitAfterNoMessageReceived(Session session)
Determine whether to trigger a commit after no message has been received. |
Methods inherited from class org.springframework.jms.listener.AbstractJmsListeningContainer |
---|
afterPropertiesSet, createSharedConnection, destroy, doInitialize, doRescheduleTask, doShutdown, doStart, doStop, establishSharedConnection, getBeanName, getClientId, getPausedTaskCount, getPhase, getSharedConnection, isActive, isAutoStartup, isRunning, logRejectedTask, prepareSharedConnection, refreshSharedConnection, rescheduleTaskIfNecessary, resumePausedTasks, runningAllowed, setAutoStartup, setBeanName, setClientId, setPhase, sharedConnectionEnabled, shutdown, start, startSharedConnection, stop, stop, stopSharedConnection |
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 |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.springframework.beans.factory.BeanNameAware |
---|
setBeanName |
Field Detail |
---|
public static final long DEFAULT_RECEIVE_TIMEOUT
Constructor Detail |
---|
public AbstractPollingMessageListenerContainer()
Method Detail |
---|
public void setSessionTransacted(boolean sessionTransacted)
JmsAccessor
Session
.
Default is "false".
Note that within a JTA transaction, the parameters passed to
create(Queue/Topic)Session(boolean transacted, int acknowledgeMode)
method are not taken into account. Depending on the J2EE transaction context,
the container makes its own decisions on these values. Analogously, these
parameters are not taken into account within a locally managed transaction
either, since the accessor operates on an existing JMS Session in this case.
Setting this flag to "true" will use a short local JMS transaction when running outside of a managed transaction, and a synchronized local JMS transaction in case of a managed transaction (other than an XA transaction) being present. The latter has the effect of a local JMS transaction being managed alongside the main transaction (which might be a native JDBC transaction), with the JMS transaction committing right after the main transaction.
setSessionTransacted
in class JmsAccessor
Connection.createSession(boolean, int)
public void setPubSubNoLocal(boolean pubSubNoLocal)
TopicSession.createSubscriber(javax.jms.Topic, String, boolean)
protected boolean isPubSubNoLocal()
public void setTransactionManager(PlatformTransactionManager transactionManager)
PlatformTransactionManager
to use for transactional wrapping of message reception plus listener execution.
Default is none, not performing any transactional wrapping.
If specified, this will usually be a Spring
JtaTransactionManager
or one
of its subclasses, in combination with a JTA-aware ConnectionFactory that
this message listener container obtains its Connections from.
Note: Consider the use of local JMS transactions instead.
Simply switch the "sessionTransacted"
flag
to "true" in order to use a locally transacted JMS Session for the entire
receive processing, including any Session operations performed by a
SessionAwareMessageListener
(e.g. sending a response message).
Alternatively, a JmsTransactionManager
may be used for fully synchronized Spring transactions based on local JMS
transactions. Check AbstractMessageListenerContainer
's javadoc for
a discussion of transaction choices and message redelivery scenarios.
JtaTransactionManager
,
JmsTransactionManager
protected final PlatformTransactionManager getTransactionManager()
public void setTransactionName(String transactionName)
TransactionDefinition.getName()
public void setTransactionTimeout(int transactionTimeout)
TransactionDefinition.getTimeout()
,
setReceiveTimeout(long)
public void setReceiveTimeout(long receiveTimeout)
NOTE: This value needs to be smaller than the transaction timeout used by the transaction manager (in the appropriate unit, of course). -1 indicates no timeout at all; however, this is only feasible if not running within a transaction manager.
MessageConsumer.receive(long)
,
MessageConsumer.receive()
,
setTransactionTimeout(int)
public void initialize()
AbstractJmsListeningContainer
Creates a JMS Connection, starts the Connection
(if "autoStartup"
hasn't been turned off),
and calls AbstractJmsListeningContainer.doInitialize()
.
initialize
in class AbstractJmsListeningContainer
protected MessageConsumer createListenerConsumer(Session session) throws JMSException
session
- the JMS Session to work on
JMSException
- if thrown by JMS methodsreceiveAndExecute(java.lang.Object, javax.jms.Session, javax.jms.MessageConsumer)
protected boolean receiveAndExecute(Object invoker, Session session, MessageConsumer consumer) throws JMSException
session
- the JMS Session to work onconsumer
- the MessageConsumer to work on
JMSException
- if thrown by JMS methodsdoReceiveAndExecute(java.lang.Object, javax.jms.Session, javax.jms.MessageConsumer, org.springframework.transaction.TransactionStatus)
protected boolean doReceiveAndExecute(Object invoker, Session session, MessageConsumer consumer, TransactionStatus status) throws JMSException
session
- the JMS Session to work onconsumer
- the MessageConsumer to work onstatus
- the TransactionStatus (may be null
)
JMSException
- if thrown by JMS methodsAbstractMessageListenerContainer.doExecuteListener(javax.jms.Session, javax.jms.Message)
protected boolean isSessionLocallyTransacted(Session session)
isSessionLocallyTransacted
in class AbstractMessageListenerContainer
session
- the Session to check
JmsResourceHolder
protected boolean shouldCommitAfterNoMessageReceived(Session session)
session
- the current JMS Session which received no message
AbstractMessageListenerContainer.commitIfNecessary(javax.jms.Session, javax.jms.Message)
on the given Sessionprotected Message receiveMessage(MessageConsumer consumer) throws JMSException
consumer
- the MessageConsumer to use
null
if none
JMSException
- if thrown by JMS methodsprotected void messageReceived(Object invoker, Session session)
invoker
- the invoker object (passed through)session
- the receiving JMS Sessionprotected void noMessageReceived(Object invoker, Session session)
invoker
- the invoker object (passed through)session
- the receiving JMS Sessionprotected Connection getConnection(JmsResourceHolder holder)
This implementation accepts any JMS 1.1 Connection.
holder
- the JmsResourceHolder
null
if none foundprotected Session getSession(JmsResourceHolder holder)
This implementation accepts any JMS 1.1 Session.
holder
- the JmsResourceHolder
null
if none foundprotected MessageConsumer createConsumer(Session session, Destination destination) throws JMSException
This implementation uses JMS 1.1 API.
session
- the JMS Session to create a MessageConsumer fordestination
- the JMS Destination to create a MessageConsumer for
JMSException
- if thrown by JMS API methods
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |