⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 distributedqueueexample.java

📁 jboss messaging examples, 基于jboss messaging的jms应用例子
💻 JAVA
字号:
/** JBoss, Home of Professional Open Source* Copyright 2005, JBoss Inc., and individual contributors as indicated* by the @authors tag. See the copyright.txt in the distribution for a* full listing of individual contributors.** This is free software; you can redistribute it and/or modify it* under the terms of the GNU Lesser General Public License as* published by the Free Software Foundation; either version 2.1 of* the License, or (at your option) any later version.** This software is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU* Lesser General Public License for more details.** You should have received a copy of the GNU Lesser General Public* License along with this software; if not, write to the Free* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA* 02110-1301 USA, or see the FSF site: http://www.fsf.org.*/package org.jboss.example.jms.distributedqueue;import javax.jms.Connection;import javax.jms.ConnectionFactory;import javax.jms.JMSException;import javax.jms.MessageConsumer;import javax.jms.MessageProducer;import javax.jms.Queue;import javax.jms.Session;import javax.jms.TextMessage;import javax.naming.InitialContext;import org.jboss.example.jms.common.ExampleSupport;/** * The example creates two connections to two distinct cluster nodes on which we have previously * deployed a distributed queue. The example sends messages on one node and consumes them from another * * Since this example is also used as a smoke test, it is essential that the VM exits with exit * code 0 in case of successful execution and a non-zero value on failure. * * @author <a href="mailto:ovidiu@feodorov.com">Ovidiu Feodorov</a> * @version <tt>$Revision: 1001 $</tt> * * $Id: TopicExample.java 1001 2006-06-24 09:05:40Z timfox $ */public class DistributedQueueExample extends ExampleSupport{   public void example() throws Exception   {      String destinationName = getDestinationJNDIName();      InitialContext ic = null;      Connection connection0 = null;      Connection connection1 = null;      ConnectionFactory cf = null;      try      {         // connecting to the first node         ic = new InitialContext();         cf = (ConnectionFactory)ic.lookup("/ClusteredConnectionFactory");         Queue distributedQueue = (Queue)ic.lookup(destinationName);         log("Distributed queue " + destinationName + " exists");         // When connecting to a messaging cluster, the ConnectionFactory has the capability of         // transparently creating physical connections to different cluster nodes, in a round         // robin fashion ...         // ... so this is a connection to a cluster node         connection0 = cf.createConnection();         // ... and this is a connection to a different cluster node         connection1 = cf.createConnection();         // Let's make sure that (this example is also a smoke test)         assertNotEquals(getServerID(connection0), getServerID(connection1));         // Create a session, and a producer on the first connection         Session session0 = connection0.createSession(false, Session.AUTO_ACKNOWLEDGE);         MessageProducer publisher0 = session0.createProducer(distributedQueue);                  // Create another session, and consumer on the second connection         Session session1 = connection1.createSession(false, Session.AUTO_ACKNOWLEDGE);               MessageConsumer consumer1 = session1.createConsumer(distributedQueue);         ExampleListener messageListener1 = new ExampleListener("MessageListener1");         consumer1.setMessageListener(messageListener1);         // Start connections, so we can receive the message         connection0.start();         connection1.start();         // Send the message         TextMessage message = session0.createTextMessage("Hello!");         publisher0.send(message);         log("The message was successfully sent to the distributed queue");                  messageListener1.waitForMessage(3000);         message = (TextMessage)messageListener1.getMessage();         log(messageListener1.getName() + " received message: " + message.getText());         assertEquals("Hello!", message.getText());                 displayProviderInfo(connection0.getMetaData());      }      finally      {         if (ic != null)         {            try            {               ic.close();            }            catch(Exception e)            {               throw e;            }         }         try         {            if (connection0 != null)            {               connection0.close();            }         }         catch(JMSException e)         {            log("Could not close connection " + connection0 + ", exception was " + e);            throw e;         }         try         {            if (connection1 != null)            {               connection1.close();            }         }         catch(JMSException e)         {            log("Could not close connection " + connection1 + ", exception was " + e);            throw e;         }      }   }   protected boolean isQueueExample()   {      return true;   }   public static void main(String[] args)   {      new DistributedQueueExample().run();   }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -