本文主要是介绍RabbitMQ-第四种交换机类型,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
接上文 RabbitMQ-主题模式
1 第四种交换机类型
header:它是根据头部信息来决定的,在我们发送的消息中是可以携带一些头部信息的,类似与HTTP,我们可以根据这些头部信息来决定路由到哪一个消息队列中。
修改配置类内容
@Configuration
public class RabbitConfiguration {@Bean("headerExchange") //注意这里返回的是HeadersExchangepublic HeadersExchange exchange(){return ExchangeBuilder.headersExchange("amq.headers") //RabbitMQ为我们预置了两个,这里用第一个就行.build();}@Bean("yydsQueue")public Queue queue(){return QueueBuilder.nonDurable("yyds").build();}@Bean("binding")public Binding binding2(@Qualifier("headerExchange") HeadersExchange exchange, //这里和上面一样的类型@Qualifier("yydsQueue") Queue queue){return BindingBuilder.bind(queue).to(exchange) //使用HeadersExchange的to方法,可以进行进一步配置//.whereAny("a", "b").exist(); 这个是只要存在任意一个指定的头部Key就行//.whereAll("a", "b").exist(); 这个是必须存在所有指定的的头部Key.where("test").matches("hello"); //比如我们现在需要消息的头部信息中包含test,并且值为hello才能转发给我们的消息队列//.whereAny(Collections.singletonMap("test", "hello")).match(); 传入Map也行,批量指定键值对}
}
启动服务,进入到yyds队列详情,可以看到多了一个test:hello
尝试发送信息
这篇关于RabbitMQ-第四种交换机类型的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!