【开发篇】十八、SpringBoot整合ActiveMQ

文章目录

1、安装ActiveMQ

docker安装

bash 复制代码
docker pull webcenter/activemq
bash 复制代码
docker run -d --name activemq -p 61616:61616 -p 8161:8161 webcenter/activemq
# * 61616是 activemq 的服务端口(映射为61616)
# * 8161是 管理后台端口(对外映射为8161)

访问控制台http://IP:8161

常规安装(安装为系统服务)

下载:

bash 复制代码
https://activemq.apache.org/components/classic/download/

解压缩即安装:

启动服务:双击bin/win64/activemq.bat

访问控制台:http://127.0.0.1:8161/,用户名\&密码:admin

2、整合

导入ActiveMQ的起步依赖:

xml 复制代码
<dependency>   
	<groupId>org.springframework.boot</groupId>    
	<artifactId>spring-boot-starter-activemq</artifactId>
</dependency>

加入相关配置:

yaml 复制代码
spring:  
  activemq:    
    broker-url: tcp://localhost:61616  
  jms:    
    pub-sub-domain: false    # JMS的两种模型,点对点、发布订阅模型,这里为true即发布订阅模型
    template:      
      default-destination: codetest #默认的消息队列的名称

注入JmsMessagingTemplate操作对象,进行消息的发送与接收

java 复制代码
@Autowired    
private JmsMessagingTemplate jmsMessagingTemplate;

业务逻辑代码就实现上篇的MessageService接口就行,上篇在拿一个队列模拟MQ,来进行消息的生产与消费,这里有了真正的队列来存储消息了。

3、发送消息到队列

convertAndsend方法,发送消息到消息队列,convert,即转换,转换成能接受的数据类型然后发送,因此这个方法的形参类型可为Object,调用方便。

java 复制代码
@Service
@Slf4j
public class MessageServiceActivemqImpl implements MessageService {    
	
	@Autowired    
	private JmsMessagingTemplate jmsMessagingTemplate;   
	 
	public void sendMessage(String id) {    
	   
		log.info("使用Active将待发送短信的订单纳入处理队列,id:"+id);
		       
		jmsMessagingTemplate.convertAndSend(id);    
		
	}    
	
	public String doMessage() {        
	
		String id = jmsMessagingTemplate.receiveAndConvert(String.class);
		
		log.info("已完成短信发送业务,订单id:" + id);
		
		return id;  
		  	
	}
}

取消息消费则相反,先receive接收,再convert转换,调用receiveAndConvert,形参为要转的目标类型。调用下上篇的接口(其实controller里就只是调用了一下service层方法),可以看到消息写入成功:

需要指定队列存储消息,则convertAndSend方法和receiveAndConvert方法传参多一个队列名即可。

java 复制代码
jmsMessagingTemplate.convertAndSend("order.queue.id",id); 
java 复制代码
String id = jmsMessagingTemplate.receiveAndConvert("order.queue.id",String.class);

4、使用消息监听器对消息队列监听

实际开发时,自然不用每次去手动取消息,直接@JmsListener注解监听队列,有消息了就自动拿出来消费(执行逻辑代码)就行:

java 复制代码
@Component
@Slf4j
public class MessageListener {    

	@JmsListener(destination = "order.queue.id")    
	public void receive(String id){ 
		//实际业务逻辑代码       
		log.info("已完成短信发送业务,id:"+id);    
	}
}

重启服务,发现上面发送的消息已被自动消费:


5、流程性业务消息消费完转入下一个消息队列

@SendTo注解将一个方法的返回值给自动加到某个队列里,搭配@JmsListener注解,就可实现消费消息的流转。 当然也可单独使用,就发送就好,像@CachePut

java 复制代码
@Component
@Slf4j
public class MessageListener {   
 
	@JmsListener(destination = "order.queue.id")   
	@SendTo("order.other.queue.id")    
	public String receive(String id){   
	     
		log.info("已完成短信发送业务,id:"+id); 
		
		//把这条消息处理完以后,返回
		return  " a handled new id :" + id;     
	}
}

这里对比下发布订阅模型与交换机:消息被消费以后,队列中就没了,如果其他程序也要用,又该如何处理? ==> 发布订阅模型,加入交换机来实现。比如RabbitMQ的Fanout Exchange广播、Direct Exchange路由、Topic Exchange话题。这里是把消息广播或路由到队列,而@SendTo搭配@JmsListener是在代码中处理完消息后的流转。

这种流水线的关系,体现的是一种顺序和依赖的业务。

6、发布订阅模型

yaml 复制代码
spring:  
  activemq:    
    broker-url: tcp://localhost:61616  
  jms:    
    pub-sub-domain: true    #发布订阅模型
    template:      
      default-destination: codetest #默认的消息队列的名称

此时发消息就在Topics中了:

相关推荐
Yaml42 分钟前
智能化健身房管理:Spring Boot与Vue的创新解决方案
前端·spring boot·后端·mysql·vue·健身房管理
LuckyLay22 分钟前
Spring学习笔记_27——@EnableLoadTimeWeaving
java·spring boot·spring
佳佳_1 小时前
Spring Boot 应用启动时打印配置类信息
spring boot·后端
程序媛小果2 小时前
基于java+SpringBoot+Vue的宠物咖啡馆平台设计与实现
java·vue.js·spring boot
狂放不羁霸4 小时前
idea | 搭建 SpringBoot 项目之配置 Maven
spring boot·maven·intellij-idea
计算机学长felix5 小时前
基于SpringBoot的“校园交友网站”的设计与实现(源码+数据库+文档+PPT)
数据库·spring boot·毕业设计·交友
码农派大星。5 小时前
Spring Boot 配置文件
java·spring boot·后端
江深竹静,一苇以航5 小时前
springboot3项目整合Mybatis-plus启动项目报错:Invalid bean definition with name ‘xxxMapper‘
java·spring boot
豪宇刘6 小时前
SpringBoot+Shiro权限管理
java·spring boot·spring
customer087 小时前
【开源免费】基于SpringBoot+Vue.JS医院管理系统(JAVA毕业设计)
java·vue.js·spring boot·后端·spring cloud·开源·intellij-idea