《《rabbitmq Java入门教程》.pdf

  1. 1、本文档共40页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《《rabbitmq Java入门教程》.pdf

Introduction RabbitMQ is a message broker. In essence, it accepts messages from producers, and delivers them to consumers. In-between, it can route, buffer, and persist the messages according to rules you give it. RabbitMQ, and messaging in general, uses some jargon. • Producing means nothing more than sending. A program that sends messages is a producer . Well draw it like that, with P: • A queue is the name for a mailbox. It lives inside RabbitMQ. Although messages 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 - its 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 like this, with its name above it: • Consuming has a similar meaning to receiving. A consumer is a program that mostly waits to receive messages. On our drawings its shown with C: Note that the producer, consumer, and broker do not have to reside on the same machine; indeed in most applications they dont. Hello World (using the Java Client) In this part of the tutorial well write two programs in Java; a producer that sends a single message, and a consumer that receives messages and prints them out. Well gloss over some of the detail in the Java API, concentrating on this very simple thing just to get started. Its 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. The Java client library RabbitMQ speaks AMQP, which is

文档评论(0)

llww + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档