`

95. Spring Boot之ActiveMQ的topic和queue【从零开始学Spring Boot】

阅读更多

 

 

经网友意见,发布了此篇文章,在之前的一篇文章【72. Spring Boot集成ActiveMQ】我们介绍过spring boot怎么集成activeMQ,之前我们的例子中只是消息模型中的一种。

       JMS规范两种常用的消息模型:点对点(point  to point ,queue)和发布/订阅(publish/subscribe,topic)。

       点对点:消息生产者生产消息发布到queue中,然后消息消费者从queue中取出,并且消费消息。这里需要注意:消息被消费者消费以后,queue中不再有存储,所以消息消费者不可消费到已经被消费的消息。Queue支持存在多个消息消费者,但是对一个消息而言,只会有一个消费者可以消费。

       发布/订阅:消息生产者(发布)将消息发布到topic中,同时有多个消息消费者(订阅)消费该消息。和点对点方式不同,发布到topic的消息会被所有订阅者消费。

 

       在之前的【72. Spring Boot集成ActiveMQ】中我们的例子中很实用了queue的方式,也就是点对点的方式,那么怎么切换为发布/订阅的消息模型呢。好了,这就是我们本章好解决的重点,另外就是如何在一个工程中即使用 queue的方式也使用 topic的方式。

抛出了本章的问题,那么看看本章的大纲吧:

本章大纲 写道
(1)spring boot ActiveMQ之发布/订阅消息模型使用;
(2)spring boot ActiveMQ 之queue and topic ;

 

 

 

接下来我们看看具体怎么操作?

1spring boot ActiveMQ之发布/订阅消息模型使用;

       这里不就不重新搭建工程了,我们在【72. Spring Boot集成ActiveMQ】的博客中的基础上继续研究。

       首先我们对我们的消息生成进行一定的改造。

第一步在App.java中声明一个ActiveMQTopic,具体代码如下:

package com.kfit;

 

import javax.jms.Queue;

import javax.jms.Topic;

 

import org.apache.activemq.command.ActiveMQQueue;

import org.apache.activemq.command.ActiveMQTopic;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.context.annotation.Bean;

 

/**

 *

 * @author Angel --守护天使

 * @version v.0.1

 * @date 2016823

 */

@SpringBootApplication

public class App {

    @Bean

    public Queue queue() {

       return new ActiveMQQueue("sample.queue");

    }

   

    @Bean

    public Topic topic() {

       return new ActiveMQTopic("sample.topic");

    }

   

//  @Bean

//  public DefaultMessageListenerContainer jmsListenerContainerFactory() {

//     DefaultMessageListenerContainer  dmlc = new DefaultMessageListenerContainer();

//      dmlc.setPubSubDomain(true);

//      // Other configuration here

//      return dmlc;

//  }

   

    public static void main(String[] args) {

       SpringApplication.run(App.class, args);

    }

}

       这里比之前多了一个topic()方法。

 

第二步就是改造消息生成者Producer,定义Topic类,在定时发送的时候发送到topic上,具体代码如下:

 

package com.kfit.demo;

 

import javax.jms.Queue;

import javax.jms.Topic;

 

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.jms.core.JmsMessagingTemplate;

import org.springframework.scheduling.annotation.EnableScheduling;

import org.springframework.scheduling.annotation.Scheduled;

import org.springframework.stereotype.Component;

 

/**

 * 消息生产者.

 * @author Angel --守护天使

 * @version v.0.1

 * @date 2016823

 */

@Component

@EnableScheduling

public class Producer {

   

    @Autowired

    private JmsMessagingTemplate jmsMessagingTemplate;

   

    @Autowired

    private Queue queue;

   

    @Autowired

    private Topic topic;

   

    @Scheduled(fixedDelay=3000)//3s执行1

    public void send() {

       //send queue.

       this.jmsMessagingTemplate.convertAndSend(this.queue, "hi,activeMQ");

       //send topic.

       this.jmsMessagingTemplate.convertAndSend(this.topic, "hi,activeMQ(topic)");

    }

   

}

 

第三步:定义消息消费者Consumer2Consumer3,具体代码如下:

Consumer2

package com.kfit.demo;

import org.springframework.jms.annotation.JmsListener;

import org.springframework.stereotype.Component;

 

/**

 * 消息消费者.

 * @author Angel --守护天使

 * @version v.0.1

 * @date 2016823

 */

@Component

public class Consumer2 {

    @JmsListener(destination = "sample.topic")

    public void receiveQueue(String text) {

       System.out.println("Consumer2="+text);

    }

}

Consumer3

package com.kfit.demo;

import org.springframework.jms.annotation.JmsListener;

import org.springframework.stereotype.Component;

 

/**

 * 消息消费者.

 * @author Angel --守护天使

 * @version v.0.1

 * @date 2016823

 */

@Component

public class Consumer3 {

    @JmsListener(destination = "sample.topic")

    public void receiveQueue(String text) {

       System.out.println("Consumer3="+text);

    }

}

到这里进行测试不会看到我们想要的效果的,这个主要是因为默认情况下,spring bootjms配置是queue的方式,所以我们需要进行指定为topic的方式。

 

第四步:配置消息模型为pub/sub方式,在application.properties添加如下配置信息:

spring.jms.pub-sub-domain=true

这里简单对这个配置说明下:如果为True,则是Topic;如果是false或者默认,则是queue

       这时候重新启动App.java,可以看到如下的打印信息:

Consumer2=hi,activeMQ(topic)

Consumer2=hi,activeMQ(topic)

Consumer3=hi,activeMQ(topic)

Consumer2=hi,activeMQ(topic)

Consumer3=hi,activeMQ(topic)

       好了到这里我们就实现了发布/订阅的消息模式,但是我们会发现另外问题了,queue的好不像不能使用了,我们会想,如果只是单纯的使用消息模型的话,那么没有问题,通过配置文件配置就好了,但是如果想使用多种消息模型的话,那么怎么办呢?

 

2spring boot ActiveMQ queue and topic ;

 

       对于同时支持queuetopic目前还没找到完美的解决方案,现在的思路就是:定义过个JmsListenerContainerFactory去实现,后续博主会关注这个部分,然后有新的方案会在博客中进行更新发布。有更好的方案的博友们也可以给我留言,告知,感激不尽。

 

à悟空学院:https://t.cn/Rg3fKJD

学院中有Spring Boot相关的课程!点击「阅读原文」进行查看!

SpringBoot视频:http://t.cn/A6ZagYTi

Spring Cloud视频:http://t.cn/A6ZagxSR

SpringBoot Shiro视频:http://t.cn/A6Zag7IV

SpringBoot交流平台:https://t.cn/R3QDhU0

SpringData和JPA视频:http://t.cn/A6Zad1OH

SpringSecurity5.0视频:http://t.cn/A6ZadMBe

Sharding-JDBC分库分表实战http://t.cn/A6ZarrqS

分布式事务解决方案「手写代码」:http://t.cn/A6ZaBnIr

分享到:
评论
9 楼 NewHeShe 2018-05-31  
是不是in-memory模式,只能在程序内使用,跟别的进程不能通讯?
8 楼 林祥纤 2017-06-09  
xxwkof 写道
topic和queue共存
引用

http://www.jianshu.com/p/d8d73c872665
@Configuration
@EnableJms
public class JmsConfiguration {
    // topic模式的ListenerContainer
    @Bean
    public JmsListenerContainerFactory<?> jmsListenerContainerTopic(ConnectionFactory activeMQConnectionFactory) {
        DefaultJmsListenerContainerFactory bean = new DefaultJmsListenerContainerFactory();
        bean.setPubSubDomain(true);
        bean.setConnectionFactory(activeMQConnectionFactory);
        return bean;
    }
    // queue模式的ListenerContainer
    @Bean
    public JmsListenerContainerFactory<?> jmsListenerContainerQueue(ConnectionFactory activeMQConnectionFactory) {
        DefaultJmsListenerContainerFactory bean = new DefaultJmsListenerContainerFactory();
        bean.setConnectionFactory(activeMQConnectionFactory);
        return bean;
    }
}




7 楼 xxwkof 2017-06-08  
topic和queue共存
引用

http://www.jianshu.com/p/d8d73c872665
@Configuration
@EnableJms
public class JmsConfiguration {
    // topic模式的ListenerContainer
    @Bean
    public JmsListenerContainerFactory<?> jmsListenerContainerTopic(ConnectionFactory activeMQConnectionFactory) {
        DefaultJmsListenerContainerFactory bean = new DefaultJmsListenerContainerFactory();
        bean.setPubSubDomain(true);
        bean.setConnectionFactory(activeMQConnectionFactory);
        return bean;
    }
    // queue模式的ListenerContainer
    @Bean
    public JmsListenerContainerFactory<?> jmsListenerContainerQueue(ConnectionFactory activeMQConnectionFactory) {
        DefaultJmsListenerContainerFactory bean = new DefaultJmsListenerContainerFactory();
        bean.setConnectionFactory(activeMQConnectionFactory);
        return bean;
    }
}

6 楼 林祥纤 2017-05-23  
lyongx 写道
 
spring.jms.pub-sub-domain=true
楼主是对的。queue不能用了。



有网友说:1.5.3可以了,还没测试!
5 楼 林祥纤 2017-05-23  
lyongx 写道
测试:有springboot1.5.3下,spring.jms.pub-sub-domain=true
同时queue也能用。
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->


console如下:
Received(queue1) <16:53:13>
Received(queue2): <echo: 16:53:13>
Received(topic1 by 2) <test topic 16:53:13>
Received(topic1 by 1) <test topic 16:53:13>



那真是太赞了....
4 楼 lyongx 2017-05-22  
 
spring.jms.pub-sub-domain=true
楼主是对的。queue不能用了。
3 楼 lyongx 2017-05-22  
测试:有springboot1.5.3下,spring.jms.pub-sub-domain=true
同时queue也能用。
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->


console如下:
Received(queue1) <16:53:13>
Received(queue2): <echo: 16:53:13>
Received(topic1 by 2) <test topic 16:53:13>
Received(topic1 by 1) <test topic 16:53:13>
2 楼 林祥纤 2017-04-26  
z673182 写道
可以 提供 源码吗


这个比较简单,按照步骤操作既可以成功的;如果还是不行的话,可以加群,要源码 。
1 楼 z673182 2017-04-26  
可以 提供 源码吗

相关推荐

    spring-boot-activemq-demo

    通过这个示例,你可以了解到如何在Spring Boot应用中集成ActiveMQ,使用Queue和Topic进行消息传递,并了解连接池和消息确认机制。这些技术在分布式系统、微服务架构中广泛用于实现异步通信和解耦。

    Spring boot 和内置ActiveMQ集成例子.zip

    spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.user=admin spring.activemq.password=password ``` 或者 ```yaml # application.yml 示例 spring: activemq: broker-url: tcp://localhost:...

    JAVA编程之Spring boot-activeMQ示例

    本项目基于Spring boot这一平台,整合流行的开源消息队列中间件ActiveMQ,实现一个向ActiveMQ添加和读取消息的功能。分别实现生产者-消费者模式和发布-订阅模式,作为java编程发送消息和消费消息的基础示例。 源码...

    Spring-ActiveMQ.rar_Spring Activemq_activemq_activemq spring

    &lt;bean id="destination" class="org.apache.activemq.command.ActiveMQQueue"&gt; &lt;constructor-arg value="myQueue" /&gt; &lt;!-- 队列名称 --&gt; ``` - 配置一个消息模板(MessageTemplate)以便发送消息: ```xml ...

    Spring集成ActiveMQ配置

    &lt;bean id="myQueue" class="org.apache.activemq.command.ActiveMQQueue"&gt; ``` 5. **发送和接收消息**:在Spring Bean中,使用JmsTemplate发送消息到队列或主题,同时定义监听器接收消息。例如,发送消息: ...

    Spring Boot整合ActiveMQ

    Spring Boot 整合 ActiveMQ 的过程涉及到多个技术栈的集成,包括前端模板引擎Thymeleaf、数据库连接池Druid、事务管理以及消息队列的使用。以下将详细阐述这些知识点。 1. **Spring Boot**: Spring Boot 是由 ...

    spring boot activemq整合例子

    4. **配置ActiveMQ连接**:在Spring Boot应用中,可以通过`spring.jmsConnectionFactory`和`spring.activemq.broker-url`等属性来配置ActiveMQ连接。例如: ```properties spring.activemq.broker-url=tcp://...

    spring boot 集成activemq Datajpa Ehcache

    在这个项目中,我们将探讨如何将Spring Boot与Apache ActiveMQ、DataJPA和Ehcache进行集成,以构建一个功能丰富的应用程序。 首先,ActiveMQ是Apache出品的一款开源消息中间件,它遵循Java Message Service (JMS) ...

    spring-boot-activemq-demo.zip

    spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.user=admin spring.activemq.password=admin ``` 3. **创建消息生产者**: 创建一个Java类作为消息的生产者,使用Spring的`@Component`注解...

    26.Spring Boot 服务的注册和发现.rar

    16套Java架构师,集群,高可用,高可扩展,高性能,高并发,性能优化,设计模式,数据结构,虚拟机,微服务架构,日志分析,工作流,Jvm,Dubbo ,Spring boot,Spring cloud, Redis,ActiveMQ,Nginx,Mycat,Netty,...

    springboot整合mybatis+activemq(activemq可以去官网下载 )

    在IT行业中,Spring Boot、MyBatis和ActiveMQ是三个非常重要的组件,分别用于简化Spring应用的初始化,处理持久化操作以及实现消息队列。本文将深入探讨如何将这三个技术整合到一个项目中,以便构建高效、可扩展的...

    spring集成activemq演示queue和topic 持久化

    在本示例中,我们将深入探讨如何将Spring框架与ActiveMQ集成,以便实现消息队列(Queue)和主题(Topic)的功能,并确保消息的持久化。ActiveMQ是Apache软件基金会开发的一个开源消息中间件,它支持多种消息协议,如...

    spring boot ActiveMQ学习练习demo项目源码

    Spring Boot ActiveMQ学习练习demo项目源码是一个针对Java开发者的学习资源,它涵盖了使用Spring Boot集成ActiveMQ进行消息队列操作的基本实践。ActiveMQ是Apache软件基金会的一个开源项目,它是Java消息服务(JMS)...

    SpringBoot整合ActiveMQ+websocket.docx

    在Spring Boot应用中整合ActiveMQ和WebSocket,可以创建一个实时通信系统,使后端服务能够高效地推送消息到前端客户端。以下将详细解释这个过程的关键知识点: 1. **ActiveMQ**:Apache ActiveMQ是一个开源的消息...

    C#客户端开发ActiveMq请下载Apache.NMS和Apache.NMS.ActiveMQ两个bin包

    为了在C#项目中使用ActiveMQ,开发者需要依赖Apache.NMS和Apache.NMS.ActiveMQ这两个库。这两个bin包是专门为.NET平台设计的,允许.NET开发者无缝地集成ActiveMQ的功能。 Apache.NMS(Net Messaging System)是...

    springboot2整合activemq的demo内含queue消息和topic消息

    在IT行业中,Spring Boot 2 和 ActiveMQ 的整合是一个常见的任务,特别是在构建高效、可扩展的微服务架构时。这个“springboot2整合activemq的demo”提供了一个实际的例子,帮助开发者理解如何在Spring Boot应用中...

    Apache ActiveMQ Queue Topic 详解

    ### Apache ActiveMQ Queue & Topic 详解 #### 一、特性及优势 Apache ActiveMQ 是一款高性能、功能丰富的消息中间件,具有以下显著特点: 1. **实现 JMS 1.1 规范**:支持 J2EE 1.4 及以上版本,这意味着它可以...

    Spring Boot ActiveMQ连接池配置过程解析

    * `spring.activemq.broker-url=tcp://localhost:61616`:指定ActiveMQ broker的URL。 * `spring.activemq.in-memory=true`:指定是否使用内存中的队列。 * `spring.jms.pub-sub-domain=true`:指定是否使用发布订阅...

    Springboot ActiveMQ 集成.rar

    spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.user=admin spring.activemq.password=admin ``` 2. **引入依赖** - 在项目`pom.xml`中添加Spring Boot对ActiveMQ的支持依赖: ```xml ...

    springboot集成activemq实现消息接收demo

    spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.user=admin spring.activemq.password=admin ``` 或者 ```yaml # application.yml 示例 spring: activemq: broker-url: tcp://localhost:...

Global site tag (gtag.js) - Google Analytics