package com.iailab.module.shasteel.mq.config;
|
|
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;
|
import org.springframework.amqp.core.TopicExchange;
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
|
/**
|
* 绑定队列
|
*
|
* @author lirm
|
* @Description
|
* @createTime 2024年11月27日
|
*/
|
@Configuration
|
public class QueueModelAlarmConfig {
|
// 队列名称
|
public final static String QUEUE_NAME = "IaiabFastShateel.Model.Alarm";
|
|
@Bean
|
public Queue alarmQueue() {
|
return new Queue(QUEUE_NAME);
|
}
|
|
@Bean
|
TopicExchange alarmExchange() {
|
return new TopicExchange(RoutingConstant.EXCHANGE);
|
}
|
|
// 注意通配符*和#的用法
|
@Bean
|
Binding bindingExchangeMessageAlarm() {
|
return BindingBuilder.bind(alarmQueue()).to(alarmExchange()).with(RoutingConstant.Iailab_Model_Alarm);
|
}
|
}
|