Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

any expert help on JMS template would be appreciated I am using Spring JMS template to consume message from activemq. I am trying

  1. keep the message in message queue if there is any JMS exception.
  2. move the message to another queue if there is no exception
  3. 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

  1. 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
  2. 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.
  3. 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.
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.