[BUG]
Author: fanshibuwenCreated Dec 27, 2024Updated Dec 27, 2024
Labelsbug
/** * 主题模式绑定分列模式 * * @param fanoutExchange 分列模式交换器 * @param topicExchange 主题模式交换器 */ // @Bean public Binding topicBinding1(FanoutExchange fanoutExchange, TopicExchange topicExchange) { return BindingBuilder.bind(fanoutExchange).to(topicExchange).with(RabbitConsts.TOPIC_ROUTING_KEY_ONE); }
rabbitmq中两个交换机之间绑定?Source: xkcoding/spring-boot-demo