RabbitMQ整合SpringBoot
1.导入依赖
mq运行所需依赖 amqp
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
2.编辑配置
在springboot的配置文件中,添加mq的配置
(此处只是演示)
spring:
rabbitmq:
host: 127.0.0.1
port: 5672
username: guest
password: guest
virtual-host: /
- host 是mq安装的主机地址
- port是端口号,一般默认5672
- virtual-host虚拟主机,默认为 /
3.编辑配置类
//标记此处为配置类
@Configuration
public class RabbitMQConfig {
//定义被final修饰的变量时,其变量名最好全是大写
public static final String EXCHANGE_NAME = "boot_topic_exchange";
public static final String QUEUE_NAME = "boot_queue";
//1. 交换机
@Bean("bootExchange")
public Exchange bootExchange(){
return ExchangeBuilder.topicExchange(EXCHANGE_NAME)
//持久化
.durable(true)
//自动删除
//.autoDelete()
//创建交换机
.build();
}
//2. 队列
@Bean("bootQueue")
public Queue bootQueue(){
return QueueBuilder.durable(QUEUE_NAME).build();
}
//3. 队列和交换机绑定 Binding
/*
1. 绑定的交换机
2. 绑定的队列
3. routing key
*/
// 后续无需注入绑定关系的方法,此处不需要BeanName
@Bean
public Binding bingQueueExchange(@Qualifier("bootQueue") Queue queue,@Qualifier("bootExchange") Exchange exchange){
return BindingBuilder.bind(queue).to(exchange).with("boot.#").noargs();
}
}
4.应用
生产者
//注入rabbitmq操作对象
@Autowired
private RabbitTemplate rabbitTemplate;
@Test
public void testSend(){
/*
参数
1.交换机(名),String
2.routing key,String
3.内容,String
*/
rabbitTemplate.convertAndSend(RabbitMQConfig.EXCHANGE_NAME,"boot.send","okokanyway");
}
相关队列中产生了一条消息
消费者
@Component
public class rabbitListener {
//监听的队列名
@RabbitListener(queues = "boot_queue")
public void ListenerQueue(Message message){
//这里拿到的message就是队列中取出的数据,可任意操作,此处只是示范用来打印
System.out.println(message);
}
}
可以看到控制台打印出我们刚刚发送的消息
相关的queue中也没有消息了