RabbitMQ系列文章导读

RabbitMQ版本

原生编程

引入jar包

<dependency>
    <groupId>com.rabbitmq</groupId>
    <artifactId>amqp-client</artifactId>
    <version>5.0.0</version>
</dependency>

Spring集成

SpringBoot集成

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

Native

Native Direct Exchange

Native Fanout Exchange

Native Topic Exchange

Native Mandatory

Native ProducerComfirm

Native RejectMessage

Native DLX

原文地址:https://www.cnblogs.com/zhangjianbing/p/13618153.html