`
zhaoshijie
  • 浏览: 2261590 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

JMS(Java Messaging Service)java消息服务 例子

    博客分类:
  • JMS
阅读更多
1、JMS是一个由AS提供的Message服务。它能接受消息产生者(Message Provider)所发出的消息,并把消息转发给消息消费者(Message  Consumer)。
2、JMS提供2种类型的消息服务:(1)Queue,即点对点,每个消息只转发给一个消息消费者使用。(2)Topic,即发布和订阅,每个消息可以转发给所有的订阅者(消费者)。
3、WEBLOGIC 8下的JMS配置:
(1)配置JMS Connection Factory
(2)配置JMS File Store(目前所找到的文档都是配置File Store,其实在具体的应用中,可能JMS JDBC Store更广泛,但暂时没有找到资料)
(3)配置JMS Server
(4)在JMS Server的destinations中配置JMS Queue或者JMS Topic
其中提供给消息产生者和消息消费者使用的是JMS Connection Factory的JNDI和JMS Queue或者JMS Topic的JNDI。
4、消息产生者向JMS发送消息的步骤:
(1)使用JNDI查询对象JMS ConnectionFactory和Destination(JMS Queue/Topic)
(2)使用管理对象JMS ConnectionFactory建立连接Connection
(3)使用连接Connection 建立会话Session
(4)使用会话Session和管理对象Destination创建消息生产者MessageSender
(5)使用消息生产者MessageSender发送消息
一个消息发送者的例子:

view plaincopy to clipboardprint?
package myjms;  
import java.util.*;  
import javax.naming.*;  
import javax.jms.*;  
public class MessageProducter {  
  public static void main(String[] args) {  
    String queueConnectionFactoryName = "myjmsconnectionfactory"; //JMS Connection Factory的JNDI  
    String queueName = "myjmsqueue"; //JMS Queue或者JMS Topic的JNDI  
    boolean transacted = false;//transaction模式  
    int acknowledgementMode = Session.AUTO_ACKNOWLEDGE;//acknowledgement模式  
    String message="Message need to send";//模拟需要发送的消息  
    Properties properties = new Properties();  
    properties.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");  
    properties.put(Context.PROVIDER_URL, "t3://localhost:7001");  
    try {  
      Context context = new InitialContext(properties);  
      Object obj = context.lookup(queueConnectionFactoryName);  
      QueueConnectionFactory queueConnectionFactory = (QueueConnectionFactory) obj;//JMS Connection Factory的获得  
       
      obj = context.lookup(queueName);  
      Queue queue = (Queue) obj;//JMS Queue或者JMS Topic的获得  
      QueueConnection queueConnection=queueConnectionFactory.createQueueConnection();//产生连接  
      queueConnection.start();  
      QueueSession queueSession = queueConnection.createQueueSession(transacted, acknowledgementMode);  
      TextMessage textMessage = queueSession.createTextMessage();  
      textMessage.clearBody();  
      textMessage.setText(message);  
      QueueSender queueSender = queueSession.createSender(queue);  
      queueSender.send(textMessage);  
      if (transacted) {  
        queueSession.commit();  
      }  
      if (queueSender != null) {  
        queueSender.close();  
      }  
      if (queueSession != null) {  
        queueSession.close();  
      }  
      if (queueConnection != null) {  
        queueConnection.close();  
      }  
    }  
    catch(Exception ex){  
      ex.printStackTrace();  
    }  
  }  

package myjms;
import java.util.*;
import javax.naming.*;
import javax.jms.*;
public class MessageProducter {
  public static void main(String[] args) {
    String queueConnectionFactoryName = "myjmsconnectionfactory"; //JMS Connection Factory的JNDI
    String queueName = "myjmsqueue"; //JMS Queue或者JMS Topic的JNDI
    boolean transacted = false;//transaction模式
    int acknowledgementMode = Session.AUTO_ACKNOWLEDGE;//acknowledgement模式
    String message="Message need to send";//模拟需要发送的消息
    Properties properties = new Properties();
    properties.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    properties.put(Context.PROVIDER_URL, "t3://localhost:7001");
    try {
      Context context = new InitialContext(properties);
      Object obj = context.lookup(queueConnectionFactoryName);
      QueueConnectionFactory queueConnectionFactory = (QueueConnectionFactory) obj;//JMS Connection Factory的获得
    
      obj = context.lookup(queueName);
      Queue queue = (Queue) obj;//JMS Queue或者JMS Topic的获得
      QueueConnection queueConnection=queueConnectionFactory.createQueueConnection();//产生连接
      queueConnection.start();
      QueueSession queueSession = queueConnection.createQueueSession(transacted, acknowledgementMode);
      TextMessage textMessage = queueSession.createTextMessage();
      textMessage.clearBody();
      textMessage.setText(message);
      QueueSender queueSender = queueSession.createSender(queue);
      queueSender.send(textMessage);
      if (transacted) {
        queueSession.commit();
      }
      if (queueSender != null) {
        queueSender.close();
      }
      if (queueSession != null) {
        queueSession.close();
      }
      if (queueConnection != null) {
        queueConnection.close();
      }
    }
    catch(Exception ex){
      ex.printStackTrace();
    }
  }
}

5、消息消费者从JMS接受消息的步骤:
(1)使用JNDI查询对象JMS ConnectionFactory和Destination(JMS Queue/Topic)
(2)使用管理对象JMS ConnectionFactory建立连接Connection
(3)使用连接Connection 建立会话Session
(4)使用会话Session和管理对象Destination创建消息消费者MessageReceiver
(5)使用消息消费者MessageReceiver接受消息,需要用setMessageListener将MessageListener接口绑定到MessageReceiver
消息消费者必须实现了MessageListener接口,需要定义onMessage事件方法。
一个消息消费者的例子:

view plaincopy to clipboardprint?
package myjms;  
import java.util.*;  
import javax.naming.*;  
import javax.jms.*;  
public class MessageReciever  
    implements MessageListener {  
  public void onMessage(Message message) {  
    if (message instanceof TextMessage) {  
      TextMessage textMessage = (TextMessage) message;  
      try {  
        System.out.println("Message content is:" + textMessage.getText());  
      }  
      catch (JMSException e) {  
        e.printStackTrace();  
      }  
    }  
  }  
  public static void main(String[] args) {  
     
    MessageReciever msgRcvr=new MessageReciever();  
    String queueConnectionFactoryName = "myjmsconnectionfactory";  
    String queueName = "myjmsqueue";  
    boolean transacted = false;  
    int acknowledgementMode = Session.AUTO_ACKNOWLEDGE;  
    Properties properties = new Properties();  
    properties.put(Context.INITIAL_CONTEXT_FACTORY,  
                   "weblogic.jndi.WLInitialContextFactory");  
    properties.put(Context.PROVIDER_URL, "t3://localhost:7001");  
    try {  
      Context context = new InitialContext(properties);  
      Object obj = context.lookup(queueConnectionFactoryName);  
      QueueConnectionFactory queueConnectionFactory = (QueueConnectionFactory)  
          obj;  
      obj = context.lookup(queueName);  
      Queue queue = (Queue) obj;  
      QueueConnection queueConnection = queueConnectionFactory.  
          createQueueConnection();  
      queueConnection.start();  
      QueueSession queueSession = queueConnection.createQueueSession(transacted,  
          acknowledgementMode);  
      QueueReceiver queueReceiver = queueSession.createReceiver(queue);  
      queueReceiver.setMessageListener(msgRcvr);  
      synchronized(msgRcvr){  
        msgRcvr.wait(100000);  
      }  
      if (queueReceiver != null) {  
        queueReceiver.close();  
      }  
      if (queueSession != null) {  
        queueSession.close();  
      }  
      if (queueConnection != null) {  
        queueConnection.close();  
      }  
    }  
    catch (Exception ex) {  
      ex.printStackTrace();  
    }  
  }  

package myjms;
import java.util.*;
import javax.naming.*;
import javax.jms.*;
public class MessageReciever
    implements MessageListener {
  public void onMessage(Message message) {
    if (message instanceof TextMessage) {
      TextMessage textMessage = (TextMessage) message;
      try {
        System.out.println("Message content is:" + textMessage.getText());
      }
      catch (JMSException e) {
        e.printStackTrace();
      }
    }
  }
  public static void main(String[] args) {
  
    MessageReciever msgRcvr=new MessageReciever();
    String queueConnectionFactoryName = "myjmsconnectionfactory";
    String queueName = "myjmsqueue";
    boolean transacted = false;
    int acknowledgementMode = Session.AUTO_ACKNOWLEDGE;
    Properties properties = new Properties();
    properties.put(Context.INITIAL_CONTEXT_FACTORY,
                   "weblogic.jndi.WLInitialContextFactory");
    properties.put(Context.PROVIDER_URL, "t3://localhost:7001");
    try {
      Context context = new InitialContext(properties);
      Object obj = context.lookup(queueConnectionFactoryName);
      QueueConnectionFactory queueConnectionFactory = (QueueConnectionFactory)
          obj;
      obj = context.lookup(queueName);
      Queue queue = (Queue) obj;
      QueueConnection queueConnection = queueConnectionFactory.
          createQueueConnection();
      queueConnection.start();
      QueueSession queueSession = queueConnection.createQueueSession(transacted,
          acknowledgementMode);
      QueueReceiver queueReceiver = queueSession.createReceiver(queue);
      queueReceiver.setMessageListener(msgRcvr);
      synchronized(msgRcvr){
        msgRcvr.wait(100000);
      }
      if (queueReceiver != null) {
        queueReceiver.close();
      }
      if (queueSession != null) {
        queueSession.close();
      }
      if (queueConnection != null) {
        queueConnection.close();
      }
    }
    catch (Exception ex) {
      ex.printStackTrace();
    }
  }
}

6、Message-driven Bean
MDB实际上就是一个消息消费者的客户端程序。它由AS EJB Container来管理。在JBUILDER生成一个MDB非常简单。



本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/yutel/archive/2009/02/10/3874439.aspx
分享到:
评论

相关推荐

    webLogic9.2配置JMS步骤

    WebLogic 9.2配置JMS(Java Message Service)涉及一系列步骤,主要目的是为了实现分布式消息传递,包括点对点的Queue模式和发布/订阅的Topic模式。在本例中,我们将专注于配置发布/订阅模式,即Topic。以下是详细的...

    EMSQueuejava实例_JinBaotao.pdf

    这个Java实例展示了如何使用Java Messaging Service (JMS) API与TIBCO Enterprise Message Service (EMS) 队列进行交互。TIBCO EMS 是一个高性能的消息中间件,常用于企业级应用之间的异步通信。以下是对代码中关键...

    rim 客服端服务端例子

    RIM(Remote Method Invocation,远程方法调用)是Java中的一种分布式计算技术,它...同时,RMI也常与其他Java技术如EJB(Enterprise JavaBeans)和JMS(Java Message Service)结合使用,以构建更加健壮的企业级应用。

    Jboss-ESB学习笔记.doc

    JBoss ESB 的一个基础应用——“Hello World File Action”进行讲解,这个例子展示了如何利用 JBoss ESB 的 File Gateway 功能来监控文件系统变化,并通过 JMS(Java Message Service)消息队列进行处理。...

    jms-topic-example

    在Java消息服务(Java Message Service,简称JMS)中,主题(Topic)是一种发布/订阅模型,用于在分布式系统中传递消息。"jms-topic-example"是一个实例项目,它展示了如何创建并使用JMS主题作为发布者和消费者之间...

    腾科Java EE培训教材:框架技术之spring(学生版)1

    - Messaging:支持消息传递,如JMS(Java Message Service)。 - Test:提供单元测试和集成测试的支持。 1.4. Spring框架的优势 - 降低复杂性:通过DI和AOP,降低了组件之间的耦合。 - 提高可测试性:Bean可以...

    apache-activemq-5.15.2下的demo

    Apache ActiveMQ是业界广泛使用的开源消息中间件,它遵循Java Message Service (JMS) 规范,提供高效、可靠的异步消息传递服务。在你提到的"apache-activemq-5.15.2"版本中,包含了"webapps-demo"这个目录,这是一个...

    Laravel开发-laravel-serializer

    `laravel-serializer`是Laravel社区为集成JMS(Java Messaging Service)序列化程序而创建的一个扩展,它提供了更高级的数据序列化和反序列化的功能,增强了Laravel的默认JSON响应能力。 首先,我们要理解序列化的...

    SpringBoot整合ActiveMQ+websocket.docx

    1. **ActiveMQ**:Apache ActiveMQ是一个开源的消息中间件,它遵循Java Message Service (JMS) 规范,用于在分布式系统中进行消息传递。它支持多种协议,如OpenWire、STOMP、AMQP、MQTT等,使得不同平台的应用可以...

    j2ee_book

    4. **Java Messaging Service (JMS)**:支持异步消息传递的API。 5. **Java Database Connectivity (JDBC)**:用于与数据库交互的标准接口。 6. **Java Naming and Directory Interface (JNDI)**:提供了一种查找和...

    EJB3开发指南《EJB.3.Developer.Guide》

    - **JMS集成**:消息驱动Bean通常与JMS(Java Message Service)集成,处理来自队列或主题的消息。 - **应用场景**:适用于高并发、低延迟的场景,如订单处理、日志记录等。 #### 九、EJB Timer Service - **功能**...

    Spingin_actionThirdEdition

    7. **消息处理(Messaging)**:Spring框架也支持消息传递,`messaging`目录可能包含基于JMS的消息处理示例,展示如何使用Spring进行消息生产和消费。 8. **代码片段(Snippets)**:`snippets`可能包含书中提到的...

    Seam Framework 2.0 Reference中文版

    Seam 结合了 JavaServer Faces (JSF)、Java Persistence API (JPA)、Java Messaging Service (JMS) 和其他 Java EE 技术,提供了丰富的功能集来帮助开发者快速构建高质量的应用程序。 #### 第一章:Seam 入门 本章...

Global site tag (gtag.js) - Google Analytics