经网友意见,发布了此篇文章,在之前的一篇文章【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的方式。
抛出了本章的问题,那么看看本章的大纲吧:
(2)spring boot ActiveMQ 之queue and topic ;
接下来我们看看具体怎么操作?
(1)spring 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 2016年8月23日
*/
@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 2016年8月23日
*/
@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)");
}
}
第三步:定义消息消费者Consumer2,Consumer3,具体代码如下:
Consumer2:
package com.kfit.demo;
import org.springframework.jms.annotation.JmsListener;
import org.springframework.stereotype.Component;
/**
* 消息消费者.
* @author Angel --守护天使
* @version v.0.1
* @date 2016年8月23日
*/
@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 2016年8月23日
*/
@Component
public class Consumer3 {
@JmsListener(destination = "sample.topic")
public void receiveQueue(String text) {
System.out.println("Consumer3="+text);
}
}
到这里进行测试不会看到我们想要的效果的,这个主要是因为默认情况下,spring boot的jms配置是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的好不像不能使用了,我们会想,如果只是单纯的使用消息模型的话,那么没有问题,通过配置文件配置就好了,但是如果想使用多种消息模型的话,那么怎么办呢?
(2)spring boot ActiveMQ 之queue and topic ;
对于同时支持queue和topic目前还没找到完美的解决方案,现在的思路就是:定义过个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
相关推荐
通过这个示例,你可以了解到如何在Spring Boot应用中集成ActiveMQ,使用Queue和Topic进行消息传递,并了解连接池和消息确认机制。这些技术在分布式系统、微服务架构中广泛用于实现异步通信和解耦。
spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.user=admin spring.activemq.password=password ``` 或者 ```yaml # application.yml 示例 spring: activemq: broker-url: tcp://localhost:...
本项目基于Spring boot这一平台,整合流行的开源消息队列中间件ActiveMQ,实现一个向ActiveMQ添加和读取消息的功能。分别实现生产者-消费者模式和发布-订阅模式,作为java编程发送消息和消费消息的基础示例。 源码...
<bean id="destination" class="org.apache.activemq.command.ActiveMQQueue"> <constructor-arg value="myQueue" /> <!-- 队列名称 --> ``` - 配置一个消息模板(MessageTemplate)以便发送消息: ```xml ...
<bean id="myQueue" class="org.apache.activemq.command.ActiveMQQueue"> ``` 5. **发送和接收消息**:在Spring Bean中,使用JmsTemplate发送消息到队列或主题,同时定义监听器接收消息。例如,发送消息: ...
Spring Boot 整合 ActiveMQ 的过程涉及到多个技术栈的集成,包括前端模板引擎Thymeleaf、数据库连接池Druid、事务管理以及消息队列的使用。以下将详细阐述这些知识点。 1. **Spring Boot**: Spring Boot 是由 ...
4. **配置ActiveMQ连接**:在Spring Boot应用中,可以通过`spring.jmsConnectionFactory`和`spring.activemq.broker-url`等属性来配置ActiveMQ连接。例如: ```properties spring.activemq.broker-url=tcp://...
在这个项目中,我们将探讨如何将Spring Boot与Apache ActiveMQ、DataJPA和Ehcache进行集成,以构建一个功能丰富的应用程序。 首先,ActiveMQ是Apache出品的一款开源消息中间件,它遵循Java Message Service (JMS) ...
spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.user=admin spring.activemq.password=admin ``` 3. **创建消息生产者**: 创建一个Java类作为消息的生产者,使用Spring的`@Component`注解...
16套Java架构师,集群,高可用,高可扩展,高性能,高并发,性能优化,设计模式,数据结构,虚拟机,微服务架构,日志分析,工作流,Jvm,Dubbo ,Spring boot,Spring cloud, Redis,ActiveMQ,Nginx,Mycat,Netty,...
在IT行业中,Spring Boot、MyBatis和ActiveMQ是三个非常重要的组件,分别用于简化Spring应用的初始化,处理持久化操作以及实现消息队列。本文将深入探讨如何将这三个技术整合到一个项目中,以便构建高效、可扩展的...
在本示例中,我们将深入探讨如何将Spring框架与ActiveMQ集成,以便实现消息队列(Queue)和主题(Topic)的功能,并确保消息的持久化。ActiveMQ是Apache软件基金会开发的一个开源消息中间件,它支持多种消息协议,如...
Spring Boot ActiveMQ学习练习demo项目源码是一个针对Java开发者的学习资源,它涵盖了使用Spring Boot集成ActiveMQ进行消息队列操作的基本实践。ActiveMQ是Apache软件基金会的一个开源项目,它是Java消息服务(JMS)...
在Spring Boot应用中整合ActiveMQ和WebSocket,可以创建一个实时通信系统,使后端服务能够高效地推送消息到前端客户端。以下将详细解释这个过程的关键知识点: 1. **ActiveMQ**:Apache ActiveMQ是一个开源的消息...
为了在C#项目中使用ActiveMQ,开发者需要依赖Apache.NMS和Apache.NMS.ActiveMQ这两个库。这两个bin包是专门为.NET平台设计的,允许.NET开发者无缝地集成ActiveMQ的功能。 Apache.NMS(Net Messaging System)是...
在IT行业中,Spring Boot 2 和 ActiveMQ 的整合是一个常见的任务,特别是在构建高效、可扩展的微服务架构时。这个“springboot2整合activemq的demo”提供了一个实际的例子,帮助开发者理解如何在Spring Boot应用中...
### Apache ActiveMQ Queue & Topic 详解 #### 一、特性及优势 Apache ActiveMQ 是一款高性能、功能丰富的消息中间件,具有以下显著特点: 1. **实现 JMS 1.1 规范**:支持 J2EE 1.4 及以上版本,这意味着它可以...
* `spring.activemq.broker-url=tcp://localhost:61616`:指定ActiveMQ broker的URL。 * `spring.activemq.in-memory=true`:指定是否使用内存中的队列。 * `spring.jms.pub-sub-domain=true`:指定是否使用发布订阅...
spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.user=admin spring.activemq.password=admin ``` 2. **引入依赖** - 在项目`pom.xml`中添加Spring Boot对ActiveMQ的支持依赖: ```xml ...
spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.user=admin spring.activemq.password=admin ``` 或者 ```yaml # application.yml 示例 spring: activemq: broker-url: tcp://localhost:...