JMS入门(六)--DeliveryMode

来源:互联网 发布:淘宝小棉袄衣服 编辑:程序博客网 时间:2024/06/01 17:14

(http://blog.csdn.net/wl_ldy/article/details/7884606)


1.在下面的例子中,分别发送一个Persistent和nonpersistent的消息,然后关闭退出JMS。

发送端代码如下:

/** * @author Administrator * @description 分别发送一个Persistent和nonpersistent的消息,然后关闭退出JMS * 运行这个程序,当输出“Send messages sucessfully!”时,说明两个消息都已经发送成功,然后我们结束它,来停止JMS Provider。 */package com.wl.jms;import javax.jms.Connection;import javax.jms.DeliveryMode;import javax.jms.JMSException;import javax.jms.MessageProducer;import javax.jms.Queue;import javax.jms.Session;import org.apache.activemq.ActiveMQConnectionFactory;import org.apache.activemq.command.ActiveMQQueue;public class DeliveryModeSendTest {/** * @param args * @throws JMSException  */public static void main(String[] args) throws JMSException {// TODO Auto-generated method stubActiveMQConnectionFactory factory=new ActiveMQConnectionFactory("vm://localhost");Connection connection=factory.createConnection();connection.start();Queue queue=new ActiveMQQueue("testQueue");Session session=connection.createSession(false, Session.AUTO_ACKNOWLEDGE);//创建一个消息的生产者MessageProducer producer=session.createProducer(queue);//设置消息的DeliveryMode为Persistentproducer.setDeliveryMode(DeliveryMode.PERSISTENT);producer.send(session.createTextMessage("A persistent Message"));//设置消息的DeliveryMode为Non-Persistentproducer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);producer.send(session.createTextMessage("A non persistent Message"));System.out.println("Send messages successfully!");}}
运行上面的程序,结果如下:



当输出“Send messages sucessfully!”时,说明两个消息都已经发送成功,然后我们结束它,来停止JMS Provider。
2. 接下来我们重新启动JMS Provicer,然后添加一个消费者:

/** * @author Administrator * @description 这个程序是基于DeliveryModeSendTest基础上来做的 * 运行上面的程序,可以得到下面的输出结果:Consumer get:A persistent Message * 可以看出消息消费者只接收到一个消息,它是一个Persistent的消息。而刚才发送的non persistent消息已经丢失了。 */package com.wl.jms;import javax.jms.Connection;import javax.jms.JMSException;import javax.jms.Message;import javax.jms.MessageConsumer;import javax.jms.MessageListener;import javax.jms.Queue;import javax.jms.Session;import javax.jms.TextMessage;import org.apache.activemq.ActiveMQConnectionFactory;import org.apache.activemq.command.ActiveMQQueue;public class DeliveryModeReceiveTest {/** * @param args * @throws JMSException  */public static void main(String[] args) throws JMSException {// TODO Auto-generated method stubActiveMQConnectionFactory factory=new ActiveMQConnectionFactory("vm://localhost");Connection connection=factory.createConnection();connection.start();Queue queue=new ActiveMQQueue("testQueue");Session session=connection.createSession(false, Session.AUTO_ACKNOWLEDGE);//创建消息的接收者,来接受DeliveryModeSendTest中发送的消息MessageConsumer consumer=session.createConsumer(queue);consumer.setMessageListener(new MessageListener(){public void onMessage(Message m) {// TODO Auto-generated method stubtry {System.out.println("Consumer get: "+((TextMessage)m).getText());} catch (JMSException e) {// TODO Auto-generated catch blocke.printStackTrace();}}});}}

运行这个接受端的程序,结果如下:


可以看出消息消费者只接收到一个消息,它是一个Persistent的消息。而刚才发送的non persistent消息已经丢失了。
另外, 如果发送一个non persistent消息, 而刚好这个时候没有消费者在监听, 这个消息也会丢失.

0 0