`
yangjayup
  • 浏览: 253519 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

ActiveMQ安装与使用

 
阅读更多

定义

ActiveMQ Apache出品,最流行的,能力强劲的开源消息总线。ActiveMQ 是一个完全支持JMS1.1J2EE 1.4规范的 JMS Provider实现,尽管JMS规范出台已经是很久的事情了,但是JMS在当今的J2EE应用中间仍然扮演着特殊的地位

 

JMSJava Messaging Service)是Java平台上有关面向消息中间件的技术规范,翻译为Java消息服务

 

应用场景

异步消息处理

 

 

安装

下载地址:http://activemq.apache.org/download.html

Windows环境,下载后解压直接运行/bin/activemq.bat即可

 

后台地址:http://localhost:8161/

 

生产者端代码:

ActiveMQConnectionFactory activeMQConnectionFactory = new ActiveMQConnectionFactory();
        activeMQConnectionFactory.setBrokerURL("tcp://192.168.1.83:61616");
        activeMQConnectionFactory.setUserName("admin");
        activeMQConnectionFactory.setPassword("admin");


        PooledConnectionFactory pooledConnectionFactory = new PooledConnectionFactory();
        pooledConnectionFactory.setConnectionFactory(activeMQConnectionFactory);
        pooledConnectionFactory.setMaximumActiveSessionPerConnection(100);
        pooledConnectionFactory.setIdleTimeout(300000);
        pooledConnectionFactory.setBlockIfSessionPoolIsFull(true);
        pooledConnectionFactory.setMaxConnections(100);

        JmsTemplate jmsTemplate = new JmsTemplate();
        jmsTemplate.setConnectionFactory(pooledConnectionFactory);

        ActiveMQQueue testqueue = new ActiveMQQueue("testqueue");

DefaultMessageListenerContainer defaultMessageListenerContainer = new DefaultMessageListenerContainer();
        defaultMessageListenerContainer.setConnectionFactory(pooledConnectionFactory);
        defaultMessageListenerContainer.setDestination(testqueue);
        defaultMessageListenerContainer.setMessageListener(testQueueMQListener);

        try {
            Connection connection = jmsTemplate.getConnectionFactory().createConnection();
            connection.start();
            Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
            MessageProducer producer = session.createProducer(testqueue);
            producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);

            for(int i = 0; i < 10; i ++) {
                TextMessage msg = session.createTextMessage("this is test, num:" + i);
                producer.send(msg);
            }

            connection.close();
        }catch (JMSException e) {
            e.printStackTrace();
        }

 

监听端代码:

 

// ConnectionFactory :连接工厂,JMS 用它创建连接
        ConnectionFactory connectionFactory;
        // Connection :JMS 客户端到JMS Provider 的连接
        Connection connection = null;
        // Session: 一个发送或接收消息的线程
        Session session;
        // Destination :消息的目的地;消息发送给谁.
        Destination destination;
        // 消费者,消息接收者
        MessageConsumer consumer;
        connectionFactory = new ActiveMQConnectionFactory(
            ActiveMQConnection.DEFAULT_USER,
            ActiveMQConnection.DEFAULT_PASSWORD,
            "tcp://192.168.1.83:61616");
        try {
            // 构造从工厂得到连接对象
            connection = connectionFactory.createConnection();
            // 启动
            connection.start();
            // 获取操作连接
            session = connection.createSession(Boolean.FALSE,
                                               Session.AUTO_ACKNOWLEDGE);

            destination = session.createQueue("testqueue");
            consumer = session.createConsumer(destination);
            while (true) {
                //设置接收者接收消息的时间
                TextMessage message = (TextMessage) consumer.receive(1000);
                if (null != message) {
                    System.out.println("收到消息:" + message.getText());
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (null != connection)
                    connection.close();
            } catch (Throwable ignore) {
            }
        }
    }

 

 

 

 

 

通过spring整合:

spring配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
   
    <!-- 真正可以产生Connection的ConnectionFactory,由对应的 JMS服务厂商提供-->  
    <bean id="targetConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
        <property name="brokerURL" value="${ActiveMQ.brokerURL}"/>
        <property name="userName" value="${ActiveMQ.userName}"/>
        <property name="password" value="${ActiveMQ.password}"/>
    </bean>

   <bean id="connectionFactory" class="org.apache.activemq.pool.PooledConnectionFactory" destroy-method="stop">
      <property name="connectionFactory" ref="targetConnectionFactory" />
      <!-- 每个连接的最大活动会话,默认500 -->
      <property name="maximumActiveSessionPerConnection" value="100" />
      <!-- 空闲连接超时时间,单位:毫秒 -->
      <property name="idleTimeout" value="300000" />
      <!-- 如果连接池是满的,则阻塞 -->
      <property name="blockIfSessionPoolIsFull" value="true" />
      <!-- 最大连接数 -->
      <property name="maxConnections" value="100" />
   </bean>

   <!-- Spring用于管理真正的ConnectionFactory的ConnectionFactory -->
    <!--<bean id="connectionFactory" class="org.springframework.jms.connection.SingleConnectionFactory">
       <property name="targetConnectionFactory" ref="targetConnectionFactory"/>
    </bean>-->
    
    <bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
        <!-- 这个connectionFactory对应的是我们定义的Spring提供的那个ConnectionFactory对象 -->
        <property name="connectionFactory" ref="connectionFactory"/>
    </bean>
      
   
    <!--搜索引擎更新队列目的地-->
    <bean id="searchIndexDestination" class="org.apache.activemq.command.ActiveMQQueue">
       <constructor-arg value="searchIndex"/>
    </bean>

    <!--这个是主题目的地,一对多的
    <bean id="topicDestination" class="org.apache.activemq.command.ActiveMQTopic">
       <constructor-arg value="topic"/>
    </bean>
    -->
    
    <!-- 搜索引擎消息监听器 -->
    <bean id="searchIndexMQListener" class="com.mm.listener.SearchIndexMQListener" >
       <property name="searchBuildCache" ref="searchBuildCache"/>
    </bean>

    <!-- 搜索引擎消息监听容器 -->
    <bean id="searchIndexJmsContainer" class="org.springframework.jms.listener.DefaultMessageListenerContainer">
       <property name="connectionFactory" ref="connectionFactory" />
       <property name="destination" ref="searchIndexDestination" />
       <property name="messageListener" ref="searchIndexMQListener" />
    </bean>


    <!--通用更新队列目的地-->
    <bean id="commonQueueDestination" class="org.apache.activemq.command.ActiveMQQueue">
       <constructor-arg value="commonQueue"/>
    </bean>

   <!-- 通用消息监听器 -->
   <bean id="commonQueueMQListener" class="com.mm.listener.CommonQueueMQListener">
      <property name="solrOwnJoinFacade" ref="solrOwnJoinFacade"/>
   </bean>

   <!-- 通用消息监听容器 -->
   <bean id="commonQueueJmsContainer" class="org.springframework.jms.listener.DefaultMessageListenerContainer">
      <property name="connectionFactory" ref="connectionFactory" />
      <property name="destination" ref="commonQueueDestination" />
      <property name="messageListener" ref="commonQueueMQListener" />
   </bean>

    <bean id="producerService" class="com.mm.jms.ProducerServiceImpl">
       <property name="jmsTemplate" ref="jmsTemplate"/>
       <property name="destinationMap">
          <map>
             <entry key="searchIndexDestination">
                <ref bean="searchIndexDestination"/>
             </entry>
             <entry key="commonQueueDestination">
                <ref bean="commonQueueDestination"/>
             </entry>
          </map>
       </property>
    </bean>
   

</beans>

 生产者端代码:

public class ProducerServiceImpl implements ProducerService {
    private JmsTemplate jmsTemplate;
    private Map<String, Destination> destinationMap;
    

    @Override
    public void sendTextMessage(DestinationTypeName typeName, String message) {
        try {

            Destination destination = destinationMap.get(typeName.getTypeName());
            if(destination == null) {
                return;
            }
            Connection connection = jmsTemplate.getConnectionFactory().createConnection();
            connection.start();
            Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
            MessageProducer producer = session.createProducer(destination);
            producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);

            TextMessage msg = session.createTextMessage(message);
            producer.send(msg);
            connection.close();
        }catch (JMSException e) {
            e.printStackTrace();
        }
    }

    @Override
    public void sendObjectMessage(DestinationTypeName typeName, JmsObjectMessage jmsObjectMessage) {
        try {

            Destination destination = destinationMap.get(typeName.getTypeName());
            if(destination == null) {
                return;
            }
            Connection connection = jmsTemplate.getConnectionFactory().createConnection();
            connection.start();
            Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
            MessageProducer producer = session.createProducer(destination);
            producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);

            ObjectMessage msg = session.createObjectMessage(jmsObjectMessage);
            producer.send(msg);
            connection.close();
        }catch (JMSException e) {
            e.printStackTrace();
        }
    }

    private static String env(String key, String defaultValue) {
        String rc = System.getenv(key);
        if( rc== null )
            return defaultValue;
        return rc;
    }

    private static String arg(String []args, int index, String defaultValue) {
        if( index < args.length )
            return args[index];
        else
            return defaultValue;
    }

    public void setJmsTemplate(JmsTemplate jmsTemplate) {
        this.jmsTemplate = jmsTemplate;
    }

    public void setDestinationMap(Map<String, Destination> destinationMap) {
        this.destinationMap = destinationMap;
    }
}

 

监听端代码:

public class CommonQueueMQListener implements MessageListener {
    private static Log logger = LogFactory.getLog(CommonQueueMQListener.class);
    private SolrOwnJoinFacade solrOwnJoinFacade;

    @Override
    public void onMessage(Message message) {
        if(message instanceof TextMessage){
            TextMessage textMsg = (TextMessage) message;

            logger.debug(textMsg);

        }else if(message instanceof ObjectMessage) {
            ObjectMessage objMsg = (ObjectMessage) message;
            try {
                if(objMsg.getObject() instanceof OwnJoinIndexMQBean) {
                    OwnJoinIndexMQBean ownJoinIndexMQBean=(OwnJoinIndexMQBean) objMsg.getObject();
                    solrOwnJoinFacade.updateSolrIndex(ownJoinIndexMQBean.getNid());
                }
            } catch (JMSException e) {
                e.printStackTrace();
            }
        }

    }

    public void setSolrOwnJoinFacade(SolrOwnJoinFacade solrOwnJoinFacade) {
        this.solrOwnJoinFacade = solrOwnJoinFacade;
    }
}

 

分享到:
评论

相关推荐

    ActiveMQ的安装与使用

    ActiveMQ安装与使用中,我们还需要了解如何通过控制台管理消息队列,如何创建连接工厂和目的地以及如何创建生产者和消费者等。这些都是开发人员在使用ActiveMQ进行企业级消息传递时必须要掌握的技能。 总的来说,...

    ActiveMQ安装和使用

    ### ActiveMQ 安装与使用详解 #### 一、ActiveMQ简介 ActiveMQ 是Apache出品的一款优秀的开源消息中间件,支持多种消息传输协议,并且具备良好的扩展性。它基于Java语言开发,支持JMS标准,同时也支持AMQP、STOMP...

    ActiveMQ5.13 安装与配置

    "ActiveMQ5.13 安装与配置" ActiveMQ 是 Apache 软件基金会提供的一个开源message broker,能够实现点对点(Point-to-Point)和发布/订阅(Publish/Subscribe)模式的消息传递。ActiveMQ 5.13 是 ActiveMQ 的一个...

    ActiveMQ安装及配置文档

    ActiveMQ安装及配置文档介绍了ActiveMQ的安装过程和配置。让新手踏入JMS的门槛。

    ActiveMq的安装和使用

    以上便是ActiveMQ安装和使用的基本知识点。在实际使用中,还需要对ActiveMQ进行深入学习和掌握,包括如何创建和管理消息队列、主题、订阅者以及消息生产者等内容,从而能充分利用ActiveMQ的强大功能,为应用系统提供...

    ActiveMq安装.docx

    本文档详细介绍了在Linux环境下安装和使用ActiveMQ的过程,以及一些基本的配置说明。 首先,我们需要确认安装环境。在本例中,系统是Linux,服务器IP为192.168.2.55,使用用户appsrv和密码appsrv123进行登录。安装...

    ActiveMq安装win7

    ### ActiveMQ在Windows 7下的安装与配置指南 #### 一、环境配置 在开始安装ActiveMQ之前,首先需要确保已经正确配置了以下环境: - **操作系统**: Windows 7 64位 - **Java环境**: JDK 1.8.0_65 - **ActiveMQ版本...

    ActiveMQ 安装 手册 说明

    要停止ActiveMQ,首先使用 `ps -ef | grep activemq` 查找与ActiveMQ相关的进程ID(PID),然后用 `kill -9 &lt;PID&gt;` 杀死对应的进程。 5. **ActiveMQ实战测试** 安装完成后,为了验证ActiveMQ是否正常工作,可以...

    activeMq安装

    在安装ActiveMQ之前,需要确保已经安装了Java Development Kit (JDK)。在本例中,使用的是JDK 1.7.0_72。确保`JAVA_HOME`环境变量指向JDK的安装目录,这样ActiveMQ才能正确运行。 2. **下载并解压ActiveMQ** 从...

    1、 ActiveMQ 安装1

    ActiveMQ 支持多种协议,包括 OpenWire、AMQP、STOMP、MQTT 和 WebSockets,使得它能够与各种不同的客户端和平台无缝集成。此外,ActiveMQ 还提供了高可用性、负载均衡和故障转移功能,以确保消息传递的可靠性和稳定...

    JDK+Tomcat+ActiveMQ安装环境配置详细说明

    在IT领域,构建一个服务环境通常涉及到多个组件的安装与配置。本篇文章将详细阐述如何在Windows操作系统上安装和配置JDK、Tomcat以及ActiveMQ,这三个组件是开发和部署Java Web应用程序的基础。 首先,我们从JDK的...

    ActiveMQ的安装与使用(单节点).docx

    ActiveMQ的安装与使用(单节点) ActiveMQ是一款流行的开源消息队列服务器,由Apache软件基金会开发和维护。下面是关于ActiveMQ的安装和使用的详细知识点: 安装前的准备 在安装ActiveMQ之前,需要安装JDK和配置...

    activemq安装与集群部署文档

    Activemq安装与集群部署文档详细介绍了ActiveMQ在Linux环境下的安装步骤、配置过程以及集群部署的相关知识。 首先,文档提到了在Linux环境下安装JDK,并配置环境变量。JDK是Java程序的运行环境,安装JDK是运行...

    php ActiveMQ的安装与使用方法图文教程

    【PHP ActiveMQ安装与使用教程】 ActiveMQ是Apache软件基金会开发的一款开源消息中间件,它作为消息总线,提供高效、可靠的消息传输服务。ActiveMQ支持多种编程语言的客户端,包括Java、C、C++、C#、Python、Ruby、...

    activemq安装.rar

    Apache ActiveMQ是业界广泛使用的开源消息中间件,它遵循Java Message Service (JMS) 规范,提供高效、可靠的异步消息传递服务。在Linux环境下安装ActiveMQ是许多IT专业人员进行分布式系统集成时的常见任务。以下是...

    CentOS安装Activemq图文教程

    "CentOS安装Activemq图文教程" 本文将详细介绍如何在CentOS系统中安装和配置Activemq,并实现开机启动的设置。 一、下载和安装Activemq 首先,我们需要从Apache官方网站下载Activemq的安装包。在浏览器中访问...

    activemq安装.pdf

    activemq安装 本文档主要讲述了ActiveMQ的安装过程,涉及到JMS、Java环境、Eclipse环境等相关知识点。 JMS简介 JMS(Java Message Service)是Java平台上的一种标准消息服务API,允许Java程序之间进行异步消息...

Global site tag (gtag.js) - Google Analytics