any expert help on JMS template would be appreciated I am using Spring JMS template to consume message from activemq. I am trying
- keep the message in message queue if there is any JMS exception.
- move the message to another queue if there is no exception
- closes the listener and don't consume messages if target system is down.
I am able to achieve only point 2. hence i am using session to roll back messages. The problem is it consumes messages correctly. when any exception , it doesn't keep the message in message queue. The AMQ shows that Number Of Pending Messages is zero.
my config is as follows
<jms:listener-container container-type="default" acknowledge="transacted" concurrency="10-50" >
<jms:listener destination="req_queue" ref="consumer" method="onMessage" />
</jms:listener-container>
in the bean i am using session.rollback inside onMessage() method
if you can help me with
- what could be wrong as it doesn't keep the message i the req_queue if there is any JMS exception - i am trying to simulate JMS exception the log shows that there is a JMS exception
- how to stop the listener from consuming messages from queue if there target system is down - i know how to catch the exception from target system if it's not available but would like to know how to stop the listener.
- is jms:listener the only way to consume message in spring with application deployed on tomcat container as web app.because i tried with bean tag to include listener.but it's not listening to get message from queue.if i use jms:listerner then only it consumes messages.