RabbitMq 实现多队列消息生产
1、业务消息传递,mq创建队列由配置config中的交换机、队列、路由键等,组装成一个完整的消息生产者。仅是一个单独的消息传递的队列。满足不了同时创建多个消息队列。
2、如何在多个业务场景下通过mq的配置建立多个队列和多个与队列匹配的路由键。实现由配置文件进行多个队列的建立
package com.sgcc.base.service.config;
import com.rabbitmq.client.*;
import org.springframework.amqp.core.*;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class RabbitMqConfig {
@Value("${spring.rabbitmq.host}")
public String host;
@Value("${spring.rabbitmq.username}")
public String username;
@Value("${spring.rabbitmq.password}")
public String password;
@Bean
RabbitMqConfig config(){
try {
ConnectionFactory factory = new ConnectionFactory();
factory.setHost(host);
factory.setPort(AMQP.PROTOCOL.PORT);
factory.setUsername(username);
factory.setPassword(password);
Connection conn = factory.newConnection();
Channel channel = conn.createChannel();
// 声明一个交换机,使用直连类型
channel.exchangeDeclare(QueueEnum.DIRECT.getExchange(), "mall.order.direct");
/**
* 队列名称 根据各位的喜欢来定义
*/
String[] queues = {"mall.order.organizationQueues","mall.order.deptQueues","mall.order.personnelQueues","mall.order.faceQueues"};
/**
* 路由键 根据各位的喜欢来定义
*/
String[] routingKey= {"mall.order.organizationQueues","mall.order.deptQueues","mall.order.personnelQueues","mall.order.faceQueues"};
for (int i = 0; i < queues.length; i++) {
channel.queueDeclare(queues[i], false, false, false, null);
channel.queueBind(queues[i], QueueEnum.DIRECT.getExchange(), routingKey[i]);
}
channel.close();
conn.close();
}catch (Exception e){
}
return null;
}
}
3、将你需要的队列与队列匹配的key循环创建,于此同时定义枚举类声明一个它们共同使用的exchange。
4、而现在创建的队列名称不一致,但是相对的队列key一致,这样保证你消息生产时需要放入那个队列而进行区分,消息消费时去那个队列中匹配。消息生产时选择你的队列名称、队列对应的key值,和你的exchange。
package com.sgcc.base.service.config;
public enum QueueEnum {
//1、直连 2、扇形 3、主题 4、头
DIRECT("mall.order.direct"), FANOUT("mall.order.fanout"), TOPIC("mall.order.topic"), HEADERS("mall.order.headers");
/**
* 交换名称
*/
private String exchange;
QueueEnum(String exchange) {
this.exchange = exchange;
}
public String getExchange() {
return exchange;
}
public void setExchange(String exchange) {
this.exchange = exchange;
}
}
5、消息的生产者,所有的消息发送都可以写在send中。将send注入你需要发送消息的实现类中,调用方法即可。
package com.sgcc.base.service.config;
import org.springframework.amqp.core.AmqpTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
// mq消息生产者
@Component
public class MqSend {
private org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(this.getClass());
@Autowired
private AmqpTemplate amqpTemplate;
//消息发送
public void organizationQueues(String msg){
amqpTemplate.convertAndSend(QueueEnum.QUEUE_ORDER_CANCEL.getExchange(),//交换机。
"mall.order.organizationQueues",//选择的队列key与队列名称相同
msg );//发送的消息,我这里的JSON串,可以直接传实体参数,可以将实体转Json 方法:(JSON.toJSONString())
}
}
6、消息消费者,多个消息消费者也可以写在同类中,不同的是每个方法要指定接收的消息队列不同。@RabbitListener。
package com.sgcc.base.service.config;
import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;
@Component
public class MqReview {
private org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(this.getClass());
//指定接受消息来自那个队列。
@RabbitListener(queues = "mall.order.organizationQueues")
//当监听到队列 mall.order.organizationQueues中有消息时则会进行接收并处理
@RabbitHandler
public void organizationQueues(String msg){
System.out.println("====消费数据===="+msg);
}
}
7、最后,项目启动报错,如果是报 RabbitConfig找不到,在你的启动类
Application中@ComponentScan(basePackages = { “com.sgcc.*.config”})声明你的config的位置。然后就是mq有没有启动,别没有启动,还有你mq的信息配置。