| | |
| | | package com.iailab.module.shasteel.mq.config; |
| | | |
| | | import com.iailab.module.shasteel.mq.common.RoutingConstant; |
| | | import com.iailab.module.shasteel.mq.consumer.PredictFinishMessage; |
| | | import com.iailab.module.shasteel.mq.common.constant.RoutingConstant; |
| | | import org.springframework.amqp.core.Binding; |
| | | import org.springframework.amqp.core.BindingBuilder; |
| | | import org.springframework.amqp.core.Queue; |
| | |
| | | public class QueuePredictFinishConfig { |
| | | // 队列名称 |
| | | public final static String QUEUE_NAME = "IaiabFastShateel.Model.PredictFinish"; |
| | | public final static String QUEUE_NAME2 = "IaiabFastShateel.Model.PredictFinish2"; |
| | | |
| | | public final static String QUEUE_NAME_ELEC = "IaiabFastShateel.Model.PredictFinish.Elec"; |
| | | |
| | | public final static String QUEUE_NAME_LDG = "IaiabFastShateel.Model.PredictFinish.LDG"; |
| | | |
| | | @Bean |
| | | public Queue predictFinishQueue() { |
| | | return new Queue(QueuePredictFinishConfig.QUEUE_NAME); |
| | | } |
| | | @Bean |
| | | public Queue predictFinishQueue2() { |
| | | return new Queue(QueuePredictFinishConfig.QUEUE_NAME2); |
| | | } |
| | | |
| | | @Bean |
| | | public Queue predictFinishQueueElec() { |
| | | return new Queue(QueuePredictFinishConfig.QUEUE_NAME_ELEC); |
| | | } |
| | | |
| | | @Bean |
| | | public Queue predictFinishQueueLDG() { |
| | | return new Queue(QueuePredictFinishConfig.QUEUE_NAME_LDG); |
| | | } |
| | | |
| | | @Bean |
| | | TopicExchange predictFinishExchange() { |
| | | return new TopicExchange(PredictFinishMessage.EXCHANGE); |
| | | return new TopicExchange(RoutingConstant.EXCHANGE); |
| | | } |
| | | |
| | | // 注意通配符*和#的用法 |
| | |
| | | Binding bindingExchangeMessagePF() { |
| | | return BindingBuilder.bind(predictFinishQueue()).to(predictFinishExchange()).with(RoutingConstant.Iailab_Model_PredictFinish); |
| | | } |
| | | @Bean |
| | | Binding bindingExchangeMessagePF2() { |
| | | return BindingBuilder.bind(predictFinishQueue2()).to(predictFinishExchange()).with(RoutingConstant.Iailab_Model_PredictFinish); |
| | | } |
| | | |
| | | @Bean |
| | | Binding bindingExchangeMessageElec() { |
| | | return BindingBuilder.bind(predictFinishQueueElec()).to(predictFinishExchange()).with(RoutingConstant.Iailab_Model_PredictFinish_Elec); |
| | | } |
| | | |
| | | @Bean |
| | | Binding bindingExchangeMessageLDG() { |
| | | return BindingBuilder.bind(predictFinishQueueLDG()).to(predictFinishExchange()).with(RoutingConstant.Iailab_Model_PredictFinish_LDG); |
| | | } |
| | | } |