ActiveMQ


ActiveMQ简单的示例

下载ActiveMQ

运行ActiveMQ

  1. 解压缩apache-activemq-5.9.0-bin.zip,
  2. 修改配置文件activeMQ.xml,将0.0.0.0修改为localhost

<transportConnector name="openwire" uri="tcp://localhost:61616"/>

​ <transportConnector name="ssl" uri="ssl://localhost:61617"/>

​ <transportConnector name="stomp" uri="stomp://localhost:61613"/>

​ <transportConnector uri="http://localhost:8081"/>

​ <transportConnector uri="udp://localhost:61618"/>

  1. 然后双击apache-activemq-5.9.0\bin\activemq.bat运行ActiveMQ程序。
  2. 启动ActiveMQ以后,登陆:http://localhost:8161/admin/ 账号密码:admin
  3. 创建一个Queue,命名为FirstQueue。
mark

点对点

  • 即一个生产者和一个消费者一一对应

producer生产者

public static void main(String[] args) throws Exception {
        // 1. 创建连接工厂ActiveMQConnectionFactory,需要ip和端口61616
        ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://192.168.37.161:61616");

        // 2. 从连接工厂中创建连接对象
        Connection connection = factory.createConnection();

        // 3. 执行start方法开启连接
        connection.start();

        // 4. 从连接中创建session对象
        // 第一个参数,是否开启事务,JTA分布式事务
        // 第二个参数,是否自动应答,如果第一个参数为true,第二个参数失效
        Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);

        // 5. 从session中创建Destination对象,设置queue名称(有两种类型queue和topic)
        Queue queue = session.createQueue("test-queue");

        // 6. 从session中创建Product对象
        MessageProducer producer = session.createProducer(queue);

        // 7. 创建消息对象
        TextMessage textMessage = new ActiveMQTextMessage();
        // 设置消息内容
        textMessage.setText("开始发消息!");

        // 8. 发送消息
        producer.send(textMessage);

        // 9. 关闭session、连接
        producer.close();
        session.close();
        connection.close();
    }

consumer消费者

  • 直接获取消息

    • public static void main(String[] args) throws Exception {
              // 1. 创建连接工厂ActiveMQConnectionFactory,需要ip和端口61616
              ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://192.168.37.161:61616");
      
              // 2. 使用工厂创建连接
              Connection connection = factory.createConnection();
      
              // 3. 使用start开启连接
              connection.start();
      
              // 4. 从连接中创建session对象
              Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
      
              // 5. 从session中创建Destination对象,设置queue名字
              Queue queue = session.createQueue("test-queue");
      
              // 6. 从session中创建Consumer
              MessageConsumer consumer = session.createConsumer(queue);
      
              // 7, 接收消息,直接获取
              while (true) {
                  // 消息超时时间是20秒
                  Message message = consumer.receive(20000);
                  // 如果消息为空,则跳出死循环
                  if (message == null) {
                      break;
                  }
      
                  // 8. 打印消息
                  if (message instanceof TextMessage) {
                      // 获取消息
                      TextMessage textMessage = (TextMessage) message;
                      // 打印
                      System.out.println(textMessage.getText());                      }
              }
      
              // 9. 关闭session、连接等
              consumer.close();
              session.close();
              connection.close();
      
          }
      

  • 使用监听器

    • public static void main(String[] args) throws Exception {
              // 1. 创建连接工厂ActiveMQConnectionFactory,需要ip和端口61616
              ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://192.168.37.161:61616");
      
              // 2. 使用工厂创建连接
              Connection connection = factory.createConnection();
      
              // 3. 使用start开启连接
              connection.start();
      
              // 4. 从连接中创建session对象
              Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
      
              // 5. 从session中创建Destination对象,设置queue名字
              Queue queue = session.createQueue("test-queue");
      
              // 6. 从session中创建Consumer
              MessageConsumer consumer = session.createConsumer(queue);
      
              // // 7, 接收消息,直接获取
              // while (true) {
              // // 消息超时时间是20秒
              // Message message = consumer.receive(20000);
              // // 如果消息为空,则跳出死循环
              // if (message == null) {
              // break;
              // }
              //
              // // 8. 打印消息
              // if (true) {
              // if (message instanceof TextMessage) {
              // // 获取消息
              // TextMessage textMessage = (TextMessage) message;
              // // 打印
              // System.out.println(textMessage.getText());
              // }
              // }
              // }
      
              // 7.接收消息
              // 监听器的方式实际上是开启了一个新的线程,专门处理消息的接受
              // 现在的情况是,主线程执行完就结束了,新的线程也跟着没了
              consumer.setMessageListener(new MessageListener() {
      
                  @Override
                  public void onMessage(Message message) {
                      if (message instanceof TextMessage) {
                          // 获取消息
                          TextMessage textMessage = (TextMessage) message;
                          try {
                              // 打印
                              System.out.println(textMessage.getText());
                          } catch (JMSException e) {
                              // TODO Auto-generated catch block
                              e.printStackTrace();
                          }
      
                      }
      
                  }
              });
      
              // 让主线程等待一会,监听器能够有时间执行
              Thread.sleep(10000);
      
              // 9. 关闭session、连接等
              consumer.close();
              session.close();
              connection.close();
      
          }
      

发布/订阅模式

  • 即一个生产者产生消息并进行发送后,可以由多个消费者进行接收。

producer生产者

public static void main(String[] args) throws Exception {
        // 1. 创建连接工厂ActiveMQConnectionFactory
        ActiveMQConnectionFactory activeMQConnectionFactory = new ActiveMQConnectionFactory(
                "tcp://192.168.37.161:61616");

        // 2. 使用工厂创建连接
        Connection connection = activeMQConnectionFactory.createConnection();

        // 3. 使用start方法开启连接
        connection.start();

        // 4. 从连接创建session
        Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);

        // 5. 从session创建Destination对象,设置topic名称
        Topic topic = session.createTopic("test-topic");

        // 6. 从session创建Product
        MessageProducer producer = session.createProducer(topic);

        // 7. 创建消息对象
        TextMessage textMessage = new ActiveMQTextMessage();
        textMessage.setText("topic消息");

        // 8. 发送消息
        producer.send(textMessage);

        // 9. 关闭session、连接等
        producer.close();
        session.close();
        connection.close();
    }

}

consumer消费者

  • consumer1

    • public static void main(String[] args) throws Exception {
              // 1. 创建连接工厂ActiveMQConnectionFactory
              ActiveMQConnectionFactory activeMQConnectionFactory = new ActiveMQConnectionFactory(
                      "tcp://192.168.37.161:61616");
      
              // 2. 从连接工厂创建连接
              Connection connection = activeMQConnectionFactory.createConnection();
      
              // 3. 使用start方法开启连接
              connection.start();
      
              // 4. 从连接创建session对象
              Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
      
              // 5. 从session创建安Destination,设置topic名称
              Topic topic = session.createTopic("test-topic");
      
              // 6. 从session创建Consumer对象
              MessageConsumer consumer = session.createConsumer(topic);
      
              // 7. 接收消息,直接接受
              while (true) {
                  Message message = consumer.receive(20000);
      
                  if (message == null) {
                      break;
                  }
      
                  if (message instanceof TextMessage) {
                      TextMessage textMessage = (TextMessage) message;
                      // 8. 打印消息
                      System.out.println(textMessage.getText());
                  }
              }
      
              // 9. 关闭session、消息等
              consumer.close();
              session.close();
              connection.close();
      
          }
      
  • consumer2

    • public static void main(String[] args) throws Exception {
              // 1. 创建连接工厂ActiveMQConnectionFactory
              ActiveMQConnectionFactory activeMQConnectionFactory = new ActiveMQConnectionFactory(
                      "tcp://192.168.37.161:61616");
      
              // 2. 从连接工厂创建连接
              Connection connection = activeMQConnectionFactory.createConnection();
      
              // 3. 使用start方法开启连接
              connection.start();
      
              // 4. 从连接创建session对象
              Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
      
              // 5. 从session创建安Destination,设置topic名称
              Topic topic = session.createTopic("test-topic");
      
              // 6. 从session创建Consumer对象
              MessageConsumer consumer = session.createConsumer(topic);
      
              // 7. 接收消息,直接接受
              // while (true) {
              // Message message = consumer.receive(20000);
              //
              // if (message == null) {
              // break;
              // }
              //
              // if (message instanceof TextMessage) {
              // TextMessage textMessage = (TextMessage) message;
              // // 8. 打印消息
              // System.out.println(textMessage.getText());
              // }
              // }
      
              // 7.接受消息,使用监听器
              consumer.setMessageListener(new MessageListener() {
      
                  @Override
                  public void onMessage(Message message) {
                      if (message instanceof TextMessage) {
                          TextMessage textMessage = (TextMessage) message;
      
                          try {
                              // 打印消息
                              System.out.println(textMessage.getText());
                          } catch (JMSException e) {
                              // TODO Auto-generated catch block
                              e.printStackTrace();
                          }
                      }
                  }
              });
      
              // 等待监听器执行
              Thread.sleep(10000);
      
              // 9. 关闭session、消息等
              consumer.close();
              session.close();
              connection.close();
      
          }
      

整合spring

加入依赖

​ <dependency>

​ <groupId>org.apache.activemq</groupId>

​ <artifactId>activemq-all</artifactId>

​ </dependency>

​ <dependency>

​ <groupId>org.springframework</groupId>

​ <artifactId>spring-jms</artifactId>

​ </dependency>

​ <dependency>

​ <groupId>org.springframework</groupId>

​ <artifactId>spring-webmvc</artifactId>

​ </dependency>

消息发送

public static void main(String[] args) {
// 1. 创建spring容器
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
"applicationContext-activemq.xml");

// 2. 从容器中获取JMSTemplate对象
JmsTemplate jmsTemplate = context.getBean(JmsTemplate.class);

// 3. 从容器中获取Destination对象
Destination destination = context.getBean(Destination.class);

// 4. 使用JMSTemplate发送消息
jmsTemplate.send(destination, new MessageCreator() {

@Override
public Message createMessage(Session session) throws JMSException {
// 创建消息对象
TextMessage textMessage = new ActiveMQTextMessage();

// 设置消息内容
textMessage.setText("spring整合ActiveMQ");

// 打印消息
System.out.println(textMessage.getText());

return textMessage;
}
});
}

消息接收

public class MyMessageListener implements MessageListener {

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

try {
// 获取消息内容
String msg = textMessage.getText();

// 打印消息
System.out.println("接受消息:" + msg);

} catch (JMSException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

}

}

queue方式配置spring

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jms="http://www.springframework.org/schema/jms"
    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-4.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd 
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
    http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-4.0.xsd
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">


    <!-- 真正可以产生Connection的ConnectionFactory,由对应的 JMS服务厂商提供 -->
    <bean id="targetConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
        <property name="brokerURL" value="tcp://192.168.37.161:61616" />
    </bean>

    <!-- Spring用于管理真正的ConnectionFactory的ConnectionFactory -->
    <bean id="connectionFactory" class="org.springframework.jms.connection.SingleConnectionFactory">
        <!-- 目标ConnectionFactory对应真实的可以产生JMS Connection的ConnectionFactory -->
        <property name="targetConnectionFactory" ref="targetConnectionFactory" />
    </bean>

    <!-- Spring提供的JMS工具类,它可以进行消息发送、接收等 -->
    <bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
        <!-- 这个connectionFactory对应的是我们定义的Spring提供的那个ConnectionFactory对象 -->
        <property name="connectionFactory" ref="connectionFactory" />
    </bean>

    <!--这个是队列目的地,点对点的 -->
    <bean id="queueDestination" class="org.apache.activemq.command.ActiveMQQueue">
        <constructor-arg>
            <value>queue</value>
        </constructor-arg>
    </bean>

    <!--这个是主题目的地,一对多的 -->
    <!-- <bean id="topicDestination" class="org.apache.activemq.command.ActiveMQTopic"> -->
    <!-- <constructor-arg value="topic" /> -->
    <!-- </bean> -->

    <!-- messageListener实现类 -->
    <bean id="myMessageListener" class="cn.itcast.activemq.spring.MyMessageListener"></bean>

    <!-- 配置一个jsm监听容器 -->
    <bean id="jmsContainer" class="org.springframework.jms.listener.DefaultMessageListenerContainer">
        <property name="connectionFactory" ref="connectionFactory" />
        <property name="destination" ref="queueDestination" />
        <property name="messageListener" ref="myMessageListener" />
    </bean>

</beans>

topic方式配置spring

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:jms="http://www.springframework.org/schema/jms" 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-4.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd 
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
    http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-4.0.xsd
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">

    <!-- 真正可以产生Connection的ConnectionFactory,由对应的 JMS服务厂商提供 -->
    <bean id="targetConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
        <property name="brokerURL" value="tcp://192.168.37.161:61616" />
    </bean>

    <!-- Spring用于管理真正的ConnectionFactory的ConnectionFactory -->
    <bean id="connectionFactory"
        class="org.springframework.jms.connection.SingleConnectionFactory">
        <!-- 目标ConnectionFactory对应真实的可以产生JMS Connection的ConnectionFactory -->
        <property name="targetConnectionFactory" ref="targetConnectionFactory" />
    </bean>

    <!-- Spring提供的JMS工具类,它可以进行消息发送、接收等 -->
    <bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
        <!-- 这个connectionFactory对应的是我们定义的Spring提供的那个ConnectionFactory对象 -->
        <property name="connectionFactory" ref="connectionFactory" />
    </bean>

    <!--这个是队列目的地,点对点的 -->
    <!-- <bean id="queueDestination" class="org.apache.activemq.command.ActiveMQQueue"> -->
    <!-- <constructor-arg> -->
    <!-- <value>queue</value> -->
    <!-- </constructor-arg> -->
    <!-- </bean> -->

    <!--这个是主题目的地,一对多的 -->
    <bean id="topicDestination" class="org.apache.activemq.command.ActiveMQTopic">
        <constructor-arg value="topic" />
    </bean>

    <!-- messageListener实现类 -->
    <bean id="myMessageListener" class="cn.itcast.activemq.spring.MyMessageListener"></bean>
    
    <!-- messageListener实现类 -->
    <bean id="myMessageListener2" class="cn.itcast.activemq.spring.MyMessageListener2"></bean>

    <!-- 配置一个jsm监听容器 -->
    <bean id="jmsContainer"
        class="org.springframework.jms.listener.DefaultMessageListenerContainer">
        <property name="connectionFactory" ref="connectionFactory" />
        <property name="destination" ref="topicDestination" />
        <property name="messageListener" ref="myMessageListener" />
    </bean>
    
    <!-- 配置一个jsm监听容器 -->
    <bean id="jmsContainer2"
        class="org.springframework.jms.listener.DefaultMessageListenerContainer">
        <property name="connectionFactory" ref="connectionFactory" />
        <property name="destination" ref="topicDestination" />
        <property name="messageListener" ref="myMessageListener2" />
    </bean>

</beans>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容