Create a JMS message listener
From Resin 3.0
(Redirected from Create a JMS Message Listener)
Contents |
Writing a Message Listener
The JMS MessageListener interface has a single method onMessage(Message).
A simple message application can implement that message listener waiting to receive messages from the queue.
MyListener.java
import javax.jms.*;
public class MyListener implements MessageListener {
public void onMessage(Message message)
{
TextMessage text = (TextMessage) message;
System.out.println("Message: " + text.getText());
}
}
Configuring a Listener Resource
resin-web.xml
<web-app xmlns="http://caucho.com/ns/resin">
<ejb-message-bean class="example.MyListener">
<connection-factory>${jmsFactory}</connection-factory>
<destination>${queue}</destination>
</ejb-message-bean>
</web-app>