src/main/java/cc/mrbird/febs/common/configure/RabbitConfigure.java
@@ -96,4 +96,23 @@ } // end // start @Bean public DirectExchange chargeExchange() { return new DirectExchange(RabbitQueueEnum.RUN_VIP_OPERATION_CHARGE_BALANCE.getExchange()); } @Bean public Queue chargeQueue() { return new Queue(RabbitQueueEnum.RUN_VIP_OPERATION_CHARGE_BALANCE.getQueue()); } @Bean public Binding chargeBind() { return BindingBuilder.bind(chargeQueue()).to(chargeExchange()).with(RabbitQueueEnum.RUN_VIP_OPERATION_CHARGE_BALANCE.getRoute()); } // end }