使用交换机进行转发到队列
第一步:创建队列
第二步:创建交换机
第三步:交换机绑定队列
第四步:修改消息生产者发送业务
第五步:修改消息接收者业务代码
@RabbitListener(queues = "fanout.queue1")public void listenFanoutQueue1(String msg) throws InterruptedException {System.out.println("消费者收到FanoutQueue11111的消息:"+msg);Thread.sleep(20);}@RabbitListener(queues = "fanout.queue2")public void listenFanoutQueue2(String msg) throws InterruptedException {System.out.println("消费者收到FanoutQueue2222222222的消息:"+msg);Thread.sleep(200);}