BibleQueueSender.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:3k
源码类别:

Java编程

开发平台:

Java

  1. package bible.jms;
  2. import javax.jms.*;
  3. import javax.naming.*;
  4. import java.util.*;
  5. /**
  6.  * Class BibleQueueSender
  7.  *
  8.  *
  9.  * @author
  10.  * @version %I%, %G%
  11.  */
  12. public class BibleQueueSender {
  13.   /**
  14.    * Method main
  15.    *
  16.    *
  17.    * @param args
  18.    *
  19.    */
  20.   public static void main(String[] args) {
  21.     Context                ctx                = null;
  22.     Hashtable              ht                 = new Hashtable();
  23.     QueueConnectionFactory qConnectionFactory = null;
  24.     QueueConnection        qConnection        = null;
  25.     QueueSession           qSession           = null;
  26.     QueueSender            qSender            = null;
  27.     Queue                  q                  = null;
  28.     TextMessage            textMsg            = null;
  29.     String                 msg;
  30.     try {
  31.       // Obtain references to JMS queue components.
  32.       ht.put(Context.INITIAL_CONTEXT_FACTORY,
  33.              "weblogic.jndi.WLInitialContextFactory");
  34.       ht.put(Context.PROVIDER_URL, "t3://localhost:7001");
  35.       ctx                = new InitialContext(ht);
  36.       qConnectionFactory =
  37.         (QueueConnectionFactory) ctx.lookup("BibleJMSFactory");
  38.       qConnection        = qConnectionFactory.createQueueConnection();
  39.       qSession           = qConnection.createQueueSession(false,
  40.         javax.jms.QueueSession.AUTO_ACKNOWLEDGE);
  41.       q                  = (Queue) ctx.lookup("BibleJMSQueue");
  42.       qSender            = qSession.createSender(q);
  43.       System.out.println("Sending messages...");
  44.       textMsg = qSession.createTextMessage();
  45.       for (int i = 1; i <= 10; i++) {
  46.         msg = "Message #" + i;
  47.         textMsg.clearBody();
  48.         textMsg.setIntProperty("severity", i);
  49.         textMsg.setText(msg);
  50.         System.out.println("  Sending message: " + msg);
  51.         qSender.send(textMsg);
  52.       }
  53.       msg = "Stop";
  54.       textMsg.clearBody();
  55.       textMsg.setText(msg);
  56.       textMsg.setIntProperty("severity", 0);
  57.       System.out.println("  Sending message: " + msg);
  58.       qSender.send(textMsg);
  59.     } catch (Exception e) {
  60.       e.printStackTrace();
  61.     } finally {
  62.       try {
  63.         // Release JMS resources in reverse order of their creation.
  64.         qSender.close();
  65.         qSession.close();
  66.         qConnection.close();
  67.       } catch (Exception e) {
  68.         e.printStackTrace();
  69.       }
  70.     }
  71.   }
  72. }
  73. /*--- Formatted in Bible Style on Thu, Sep 6, '01 ---*/
  74. /*------ Formatted by Jindent 3.24 Gold 1.02 --- http://www.jindent.de ------*/