前言:比如我们的支付完成之后需要进行修改支付状态还要完成短信通知用户需要同时并发两条指令我们可以使用direct交换机进行指定两个不同的业务去完成这两件事
比如我们现在有direct.queue1/direct.queue2两个消息队列,一个direct交换机
我们创建完成两个队列之后需要将交换机进行绑定到对应的队列,绑定时我们需要将key写进去,因为要根据不同的key找到指定的队列去完成不同的消息业务
使用java操作
消费者监听代码
//使用direct交换机进行消息发送
@RabbitListener(queues = "direct.queue1")
public void listenDirectQueue1(String msg) throws InterruptedException {
System.out.println("消费者收到DirectQueue11111111的消息:"+msg);
Thread.sleep(20);
}
@RabbitListener(queues = "direct.queue2")
public void listenDirectQueue2(String msg) throws InterruptedException {
System.out.println("消费者收到DirectQueue2222222222222的消息:"+msg);
Thread.sleep(200);
}
发送者代码
//使用Direct交换机进行消息转发
@Test
void testDirect() {
String exchangeName = "hmall.direct";
String msg = "blue";
rabbitTemplate.convertAndSend(exchangeName, "blue",msg);
}