rabbitmq之簡單例子

1、pom.xml:

<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-amqp</artifactId>
		</dependency>

2、配置:(--15672 網頁管理  5672 AMQP端口)

spring.application.name=springboot-amqp
server.port=8080

spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=guest
spring.rabbitmq.password=870301

3、定義一個隊列

@Configuration
public class SenderConfig {
	
	@Bean
	public Queue queue(){
		return new Queue("rabbit-gzc-hello");
	}

}

4、定義生產者

@Component
public class Sender {
	
	@Autowired
	private AmqpTemplate amqpTemplate;
	
	public void send(){
		String msg="rabbitmq-hello"+new Date();
		this.amqpTemplate.convertAndSend("rabbit-gzc-hello", msg);
	}
	
}

5、定義消費者

@Component
public class Receiver {
	@RabbitListener(queues="rabbit-gzc-hello")
	public void receive(String msg){
		
		System.out.println("receive::::"+msg);
	}
}

6、測試

@RunWith(SpringRunner.class)
@SpringBootTest(classes=RabbitMqHelloApplication.class)
public class RabbitMqHelloApplicationTests {
	
	@Autowired
	private Sender sender;
	
	@Test
	public void send() {
		this.sender.send();
	}

}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章