代码拉取完成,页面将自动刷新
package com.yum.ms.config;
import org.springframework.amqp.core.*;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.HashMap;
import java.util.Map;
/**
* @author Yum
* @version 1.0
* Header模式
*/
//@Configuration
//public class MQHeadersConfig {
// public static final String QUEUE01 = "queue_header01";
// public static final String QUEUE02 = "queue_header02";
// public static final String EXCHANGE = "headersExchange";
//
//
// @Bean
// public Queue queue01() {
// return new Queue(QUEUE01);
// }
//
// @Bean
// public Queue queue02() {
// return new Queue(QUEUE02);
// }
//
// // 交换机
// @Bean
// public HeadersExchange headersExchange() {
// return new HeadersExchange(EXCHANGE);
// }
//
// // 将队列绑定到交换机上
// @Bean
// public Binding binding01() {
// // whereAny 任意一个键值对满足
// Map<String,Object> map = new HashMap();
// map.put("color","red");
// map.put("speed","low");
// return BindingBuilder.bind(queue01()).to(headersExchange()).whereAny(map).match();
// }
//
// // 将队列绑定到交换机上
// @Bean
// public Binding binding02() {
// // whereAll 所有键值对满足
// Map<String,Object> map = new HashMap();
// map.put("color","red");
// map.put("speed","fast");
// return BindingBuilder.bind(queue02()).to(headersExchange()).whereAll(map).match();
// }
//}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。