赞
踩
SpringBoot中使用RabbitMQ
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
spring:
application:
name: springboot_rabbitmq
rabbitmq:
host: xxxx
port: 5672
username: ems
password: 123
virtual-host: /ems
使用RabbitTemplate
用来简化操作 使用时候直接在项目中注入即可使用
1.开发生产者
@Autowired
private RabbitTemplate rabbitTemplate;
@Test
public void testHello(){
rabbitTemplate.convertAndSend("hello","hello world");
}
2.开发消费者
@Component
@RabbitListener(queuesToDeclare = @Queue("hello"))
public class HelloCustomer
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。