rabbitmq java文档_RabbitMQ文档翻译——Hello World!(上)

文章主要翻译自RabbitMQ官方文档,主要是为了练习英语翻译,顺便学习一下RabbitMQ😶

其中也记录了一些爬过的坑

Introduction

RabbitMQ is a message broker. The principal idea is pretty simple: it accepts and forwards messages. You can think about it as a post office: when you send mail to the post box you're pretty sure that Mr. Postman will eventually deliver the mail to your recipient. Using this metaphor RabbitMQ is a post box, a post office and a postman.

The major difference between RabbitMQ and the post office is the fact that it doesn't deal with paper, instead it accepts, stores and forwards binary blobs of data ‒messages.

RabbitMQ, and messaging in general, uses some jargon.

译:RabbitMQ是一个消息中间件(message broker)。它的核心思想(principal idea)非常简单:它可以接受和发送消息。你可以把它就想象成一个寄信过程:当你寄信时,你要把信投到邮箱里,然后你相信一定会有邮递员把信取走,并且安全无误的把信送到收件人的手中。一个恰当的比喻,RabbitMQ扮演了三个角色,它是一个邮箱,也是一个邮局,还是一个邮递员。

当然,它和邮局最重要的区别是,RabbitMQ存储、发送的不是纸(废话),而是二进制的数据。

RabbitMQ在使用中有一些术语。

Producing means nothing more than sending. A program that sends messages is a producer. We'll draw it like that, with "P":

译:“生产者”其实和“消息发送”意思差不多。代表一个发送消息的生产者。我们简称它为“P”:

2cfa1ac488280358ec14a6c63edb1299.png

Aqueue is the name for a mailbox.It lives inside RabbitMQ.Although message flow through RabbitMQ and your applications,they can be stored

only inside a queue.A queue is not bound by any limits,it can store as many messages as you like - it's essentially an infinite buffer. Many producers

can send messages that go to one queue, many consumers can try to receive data from one queue. A queue will be drawn as like that, with its name

above it:

译:一个队列可以比喻作是一个邮箱。它存在于RabbitMQ中。虽然消息的传输需要通过RabbitMQ和你的应用程序,这些消息只能保存在队列中。

一个队列是没有什么约束和限制的,只要你愿意它可以存储很多消息,本质上来说它就是一个无穷的缓冲区。许多消息生产者可以向一个

队列发送消息,同样许多消费者可以尝试接收一个队列中的消息。下图所示就是一个队列:

70c6bd7703018c3d0e72ac88ed10f176.png

Consuming has a similar meaning to receiving. A consumer is a program that mostly waits to receive messages. On our drawings it's shown with "C":

译:消费也可以理解为接收。一个接收者就是一个等待接收消息的程序。下图就是一个接受者“C”:

010dfbe5a896e8f0dc8631e0e77d2f30.png

Note that the producer, consumer, and broker do not have to reside on the same machine; indeed in most applications they don't.

译:注意,生产者、消费者、中间件不必在同一台机器上。事实上他们没有在一台机器上。

"Hello World"

(using the Java Client)

In this part of the tutorial we'll write two programs in Java; a producer that sends a single message, and a consumer that receives messages and prints them out. We'll gloss over some of the detail in the Java API, concentrating on this very simple thing just to get started. It's a "Hello World" of messaging.

In the diagram below, "P" is our producer and "C" is our consumer. The box in the middle is a queue - a message buffer that RabbitMQ keeps on behalf of the consumer.

译:这部分的内容会指导我们用Java语言写几个程序;一个用来发送单独消息的生产者,和一个接收消息的消费者,并将他们输出出来。我们会忽略一些调用JavaAPI的细节,只关心这个简单的例子可以跑起来。

在下方的图表中“P”代表我们的生产者,“C”代表我们的消费者。它们中间这个盒子是队列——它保持着RabbitMQ代表消费者的消息缓冲区。

ace884767ace27f4161ee7efb805a5d4.png

The Java client library

RabbitMQ speaks multiple protocols. This tutorial uses AMQP 0-9-1, which is an open, general-purpose protocol for messaging. There are a number of clients for RabbitMQ in many different languages. We'll use the Java client provided by RabbitMQ.

Download the client library package, and check its signature as described. Unzip it into your working directory and grab the JAR files from the unzipped directory:

$ unzip rabbitmq-java-client-bin-*.zip

$ cp rabbitmq-java-client-bin-*/*.jar ./

(The RabbitMQ Java client is also in the central Maven repository, with the groupIdcom.rabbitmq and the artifactId amqp-client.)

译:首先需要引入Java client库的依赖,可以通过下载jar包,或者使用Maven构建工具,下面补充一下官方文档没有举例的maven配置:

com.rabbitmq

amqp-client

3.3.4

Now we have the Java client and its dependencies, we can write some code.

译:现在我们有了RabbitMQ封装好的client和这个依赖,下面我们就可以敲一些代码了。

Sending

We'll call our message sender Send and our message receiver Recv. The sender will connect to RabbitMQ, send a single message, then exit.

译:我们调用我们的消息发送者“Send”和我们的消息接受者“Recv”。这个发送者会连接RabbitMQ,发送一条消息,然后退出。

In Send.java, we need some classes imported:

译:在Send.java中,我们需要引入一些类:

1 importcom.rabbitmq.client.ConnectionFactory;2 importcom.rabbitmq.client.Connection;3 import com.rabbitmq.client.Channel;

Set up the class and name the queue:

译:建立类并声明队列的名字:

1 public classSend {2 private final static String QUEUE_NAME = "hello";3

4 public static voidmain(String[] argv)5 throwsjava.io.IOException {6 ...7 }8 }

then we can create a connection to the server:

译:然后我们就可以和server来建立一个连接:

1 ConnectionFactory factory = newConnectionFactory();2 factory.setHost("localhost");3 Connection connection =factory.newConnection();4 Channel channel = connection.createChannel();

注意,这里也可以设置Connection的端口号,通过:

factory.setPort(5672);

查看源码,默认的端口是:

public static final int DEFAULT_AMQP_OVER_SSL_PORT = 5671;

The connection abstracts the socket connection, and takes care of protocol version negotiation and authentication and so on for us. Here we connect to a broker on the local machine - hence thelocalhost. If we wanted to connect to a broker on a different machine we'd simply specify its name or IP address here.

Next we create a channel, which is where most of the API for getting things done resides.

To send, we must declare a queue for us to send to; then we can publish a message to the queue:

译:这个连接抽象自socket连接,并且我们负责协议的版本协商和认证等方面。在这里我们连接一个本机的中间件——也就是“localhost”。如果我们想连接到其它机器上的中间件,我们需要简单的制定它的机器名或者IP地址。接下来我们创建一个通道,要做的大多事情都在这个API中。发送,我们必须声明一个消息队列用来为我们发送消息;然后我们就可以发送消息给队列了。

1 channel.queueDeclare(QUEUE_NAME, false, false, false, null);2 String message = "Hello World!";3 channel.basicPublish("", QUEUE_NAME, null, message.getBytes());4 System.out.println(" [x] Sent '" + message + "'");

Declaring a queue is idempotent - it will only be created if it doesn't exist already. The message content is a byte array, so you can encode whatever you like there.

Lastly, we close the channel and the connection;

译:我们声明的这个队列是幂等的——如果不存在队列,则创建一个。消息的内容是一个字节数组,所以你可以随心所欲的编码你要发送的内容。

Lastly, we close the channel and the connection;

译:最后,我们关闭建立的通道和连接。

1 channel.close();2 connection.close();

下面是Send.java完整源码,其中注释有声明队列和发送消息时参数列表说明:

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

1 packageProducer;2

3 importcom.rabbitmq.client.Channel;4 importcom.rabbitmq.client.Connection;5 importcom.rabbitmq.client.ConnectionFactory;6

7 importjava.io.IOException;8

9 /**

10 * Created by zhengbin06 on 16/9/10.11 */

12 public classSend {13 private final static String QUEUE_NAME = "hello";14 public static void main(String[] args) throwsIOException {15 ConnectionFactory connectionFactory = newConnectionFactory();16 connectionFactory.setHost("localhost");17 //connectionFactory.setPort(5672);

18 Connection connection =connectionFactory.newConnection();19 Channel channel =connection.createChannel();20 /**

21 * Declare a queue22 *@seecom.rabbitmq.client.AMQP.Queue.Declare23 *@seecom.rabbitmq.client.AMQP.Queue.DeclareOk24 *@paramqueue the name of the queue25 * 队列:这是这个队列的名字26 *@paramdurable true if we are declaring a durable queue (the queue will survive a server restart)27 * 持久性:true代表声明一个持久的队列(服务器的重启不会影响到队列)28 *@paramexclusive true if we are declaring an exclusive queue (restricted to this connection)29 * 独有性(唯一性):true代表声明一个唯一的消息队列(仅限于这个连接,也就是说在这个连接(通道)中这个消息队列是唯一的)30 *@paramautoDelete true if we are declaring an autodelete queue (server will delete it when no longer in use)31 * 自动删除:如果为true代表声明了一个会自动销毁的消息队列(当长时间不使用时,服务器将把它删除)32 *@paramarguments other properties (construction arguments) for the queue33 * 参数:其它的一些声明队列的构造参数列表34 *@returna declaration-confirm method to indicate the queue was successfully declared35 *@throwsjava.io.IOException if an error is encountered36 */

37 //在这个通道中,声明一个消息队列

38 channel.queueDeclare(QUEUE_NAME, false, false, false, null);39 String message = "Hello World!";40 /**

41 * Publish a message42 *@seecom.rabbitmq.client.AMQP.Basic.Publish43 *@paramexchange the exchange to publish the message to44 * 交换:交换发送的消息45 *@paramroutingKey the routing key46 * 路由密钥:代表路由的密钥47 *@paramprops other properties for the message - routing headers etc48 * 其它信息:一些关于消息的其他属性——路由的消息头等49 *@parambody the message body50 * 消息主体:消息的主体(一个字节数组)51 *@throwsjava.io.IOException if an error is encountered52 */

53 channel.basicPublish("", QUEUE_NAME, null, message.getBytes());54 System.out.println(" [x] Sent '" + message + "'");55 channel.close();56 connection.close();57 }58 }

View Code

到这步为止你就可以运行Send.java 的main方法了,如果报错或者没有输出,官方文档给出的解释是:

Sending doesn't work!

If this is your first time using RabbitMQ and you don't see the "Sent" message then you may be left scratching your head wondering what could be wrong. Maybe the broker was started without enough free disk space (by default it needs at least 1GB free) and is therefore refusing to accept messages. Check the broker logfile to confirm and reduce the limit if necessary. The configuration file documentation will show you to set disk_free_limit.

译:如果这是你第一次使用RabbitMQ并且你没有看到“Sent”出的消息,面对这个问题你会有点摸(yi)不(lian)到(de)头(meng)脑(bi)。这个问题可能的原因是中间件没有足够的磁盘空间(默认最少需要1GB的磁盘空间),并且因此拒绝接收消息。检查中间件(broker)的日志文件,必要时减少一些限制。配置文件中的有"disk_free_limit"这一项。

但是我并没有遇到这个问题,在运行Send.java时遇到的是这个问题:连接被拒绝。

f8a4725df190c4fcd0791bc9054b9dc8.png

其实这是我们没有RabbitMQ-Server的原因,在官方文档的开头就有提示:

1b59f55068a763e0c7a91cd2cc228f8b.png

译:这个教程的假定你已经安装并且运行了RabbitMQ,地址是localhost(本地)端口是5672(这个没搞清楚,源码显示默认是5671,可能是我引入的版本低的原因)

点击“installed”跳转至如下页面,然后选择操作系统:

820f8bde92c7f807fa7c605f56a3dc58.png

最后按照下方页面的提示,进行安装:

1c4834b1cdbc08c6aa2d745a7592dacc.png

译:下载压缩包,解压至任意文件夹下,解压,在Finder中打开该包下的sbin/rabbitmq-server文件(一个shell脚本文件),或者在终端中“sbin/rabbitmq-server”也可以,Ctrl+c终止服务:

003a004c80a08d2c2cf1044442957a90.gif

或者加上"-detached"参数,表示(in which case the server process runs in the background)也就是说这种情况下服务器在后台运行:

c74890b1b51bb5942fc4ebb9c4d0c0a1.gif

查看Broker状态:“./rabbitmqctl status”

b047474e807da7fb8181602bbdc10632.png

关闭Broker:“./rabbitmqctl stop”

20a9795d4b58b8ac2ad5875a52ddb5e8.gif

列出所有队列:

你也许希望查看RabbitMQ中有哪些队列、有多少消息在队列中。此时你可以使用rabbitmqctl工具:

➜ sbin ./rabbitmqctl list_queues

这篇简单介绍了RabbitMQ中的三个角色,和“Hello World!”这个例子中的Send.java,下面的一篇继续完成例子中的消息消费者Recv.java。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/530151.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

java string 包含http_Java中使用HttpPost上传文件以及HttpGet进行API请求(包含HttpPost上传文件)...

一、HttpPost上传文件public static String getSuffix(final MultipartFile file){if(file null || file.getSize() 0){return null;}String fileName file.getOriginalFilename();return fileName.substring(fileName.lastIndexOf(".")1);}public static JSONObj…

java倒计时跳出窗口_java倒计时弹出框

直接使用java语言写出一个运行时的弹出框倒计时:package test.dagong.testDecreaseDate;import java.awt.Container;import java.awt.FlowLayout;import java.awt.Toolkit;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.sw…

jpa mysql存储过程_Jpa调用存储过程及参数

public List findAllEntityListBySearch(Long inputInfoId, int flag) throws Exception {List infoviewListnew ArrayList<>();EntityManager em emf.createEntityManager();try {StoredProcedureQuery storedProcedure em.createStoredProcedureQuery("存储名称&…

python从mongodb里取出数据进行可视化_python3 mongoDB数据库的安装配置与可视化

python3 mongoDB数据库的安装配置与可视化。前天说是要学习如何使用mongoDB的链接与安装。安装环境&#xff1a; wind10 还是盗版的 磁盘分析&#xff1a;只有一个C盘&#xff0c;步骤&#xff1a;1 . 下载这里下载了对应的msi文件&#xff0c;貌似.zip文件没有了2 我默认把mon…

idea 注入mapper报错报红的几种解决方案

文章目录 前言方法1&#xff1a;为 Autowired 注解设置required false方法2&#xff1a;用 Resource 替换 Autowired方法3&#xff1a;在Mapper接口上加上Repository注解方法4&#xff1a;用Lombok方法5&#xff1a;把IDEA的警告关闭掉方法6&#xff1a;不用管他 前言 相信大…

java 调用对象的方法_JAVA调用对象方法的执行过程

JAVA调用对象方法的执行过程&#xff1a;①.编译器查看对象的声明类型和方法名。假设调用x.f(parameter), 且隐式参数x声明为C类型的对象&#xff0c;有可能在C对象中存在多个参数类型和参数个数不同的f的方法{例如&#xff1a;f(int)、f(int,String)和f(String)}&#xff0c;…

java类默认权限_Java 访问权限控制以及类初始化顺序

一. Package在一个项目中&#xff0c;不可以有相同的两个包名package语句必须是文件中除注释外第一句程序代码&#xff0c;否则不能通过编译。二. Java访问权限概述类成员&#xff1a;对于一个类&#xff0c;其成员(包括成员变量和成员方法)能否被其他类所访问&#xff0c;取决…

java http头 字符串转日期_springboot~DTO字符字段与日期字段的转换问题

不会自动转换string与date主要是这个意思&#xff0c;前端提交的JSON里&#xff0c;日期是一个字符串&#xff0c;而对应后端的实体里&#xff0c;它是一个Date的日期&#xff0c;这两个在默认情况下是不能自动转换的&#xff0c;我们先看一下实体实体public class UserDTO {pr…

java super extends_Java继承和super的用法

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼继承的关键字:extends格式如下: class 子类名 extends父类名{...}例如学生是继承人类这一父类的.class student extends person{...}如果一个类的声明没有使用关键字extends,则这个类默认是继承Object类的.Object是所有类的父类.Ob…

比较abc大小的java_比较abc大小java

比较abc大小java[2021-02-09 04:04:20] 简介:php去除nbsp的方法&#xff1a;首先创建一个PHP代码示例文件&#xff1b;然后通过“preg_replace("/(\s|\&nbsp\;| |\xc2\xa0)/", " ", strip_tags($val));”方法去除所有nbsp即可。推荐&#xff1a;《PH…

海天食品的java开发工作如何_再三个月就秋招了,我想找一份java开发工作,现在应该怎么准备一下?...

在找工作之前&#xff0c;大家都要做一些准备工作&#xff0c;java开发也是如此掌握核心JavaSE首先&#xff0c;从核心Java(JavaSE)开始学习&#xff0c;尽可能地掌握它。你应该了解和掌握一些基本概念&#xff0c;如循环&#xff0c;数组&#xff0c;运算符等等。此外&#xf…

java udp简单聊天程序_Java基于UDP协议实现简单的聊天室程序

最近比较闲&#xff0c;一直在抽空回顾一些java方面的技术应用。今天没什么事做&#xff0c;基于udp协议&#xff0c;写了一个非常简单的聊天室程序。现在的工作&#xff0c;很少用到socket&#xff0c;也算是对java网络编程方面的一个简单回忆。先看一下效果&#xff1a;实现的…

java9 反应编程_Java9第四篇-Reactive Stream API响应式编程

file我计划在后续的一段时间内&#xff0c;写一系列关于java 9的文章&#xff0c;虽然java 9 不像Java 8或者Java 11那样的核心java版本&#xff0c;但是还是有很多的特性值得关注。期待您能关注我&#xff0c;我将把java 9 写成一系列的文章&#xff0c;大概十篇左右。Java 9的…

bb10系统支持java吗_黑莓BB10怎么样 BlackBerry 10系统好用吗?

曾几何时黑莓Blackberry OS是一款十分受用户欢迎的手机系统&#xff0c;不过随着手机系统市场已经被苹果iOS、谷歌安卓、微软Windows Phone三分天下&#xff0c;致使曾经的黑莓帝国逐渐沦陷&#xff0c;体验和性能都已经明显跟不上iOS与安卓等系统的脚步了&#xff0c;也因为如…

java中兴参与实参相同_中兴通讯_传输SDH试题(含答案)

中兴传输SDH试题一、单项选择题(每小题2分&#xff0c;共30分)1、在SDH系统中, RSOH指(A)。A.再生段开销B.复用段开销C.再生段通道开销D.复用段通道开销2.、同步数字体系SDH具有(A)帧结构。A.块状B.串行C.链形D.三维3、管理指针单元的作用是(A)。A、用来指示信息净负荷的第一个…

php 正则提取url,php 正则表达式提取网页超级链接url的函数

function match_links($document) {preg_match_all("]))[^>]*>?(.*?)isx",$document,$links);while(list($key,$val) each($links[2])) {if(!empty($val))$match[link][] $val;}while(list($key,$val) each($links[3])) {if(!empty($val))$match[link][] …

php array colum,php5.5新数组函数array_column使用

array_column 用于获取二维数组中的元素(PHP 5 > 5.5.0)&#xff0c;但我们有时候需要在低版本中使用&#xff0c;那么就可以使用下面的代码即可PHP5.5发布了&#xff0c;其中增加了一个新的数组函数array_column&#xff0c;感觉不错的&#xff01;但是低版本PHP要使用&…

php 将字符串打乱,PHP内部实现打乱字符串顺序函数str_shuffle的方法

前言2019年春节已过&#xff0c;今天是上班第一天&#xff0c;还得翻一翻之前没有看完的PHP源码。今天聊的是字符串顺序打乱函数str_shuffle。这个函数本身使用频率并不高。但是&#xff0c;其内部实现还是非常有趣的。str_shuffle() 函数随机地打乱字符串中的所有字符。要注意…

php+js+return+true,js中return、return false、return true的区别

1.语法及返回方式①返回控制与函数结果语法为:return 表达式;语句结果函数的执行,返回调用函数,而且把表达式的值作为函数结果返回出去②返回控制无函数结果语法为:return;在大多数情况下,为事件处理函数如果让其返回false,可以防止默认的事件行为.例如,默认情况下,点击一个标签…

php strlen遇0截断,聊下php下的截断问题

0x01 起因有天在群里说起上传的%00截断的一些问题&#xff0c;就想起之前自己在这个问题踩过坑&#xff0c;想起了自己曾经的flag说要写文章&#xff0c;一直没写&#xff0c;现在来填坑了。0x02 经过源码理解1234//test.phpinclude "1.txt\000.jpg";?>1234//1.t…