RabbitMQ REST API
启用管理插件时,RabbitMQ 服务器会公开一个 REST API 来监视和配置代理。现在提供 Java Binding for the API。com.rabbitmq.http.client.Client
是一种标准的、直接的,因此是阻塞的 API。它基于 Spring Web 模块及其 RestTemplate
实现。另一方面,com.rabbitmq.http.client.ReactorNettyClient
是一种基于 Reactor Netty 项目的反应式非阻塞实现。
When the management plugin is enabled, the RabbitMQ server exposes a REST API to monitor and configure the broker.
A Java Binding for the API is now provided.
The com.rabbitmq.http.client.Client
is a standard, immediate, and, therefore, blocking API.
It is based on the Spring Web module and its RestTemplate
implementation.
On the other hand, the com.rabbitmq.http.client.ReactorNettyClient
is a reactive, non-blocking implementation based on the Reactor Netty project.
hop 依赖项(com.rabbitmq:http-client
)现在也是 optional
的。
The hop dependency (com.rabbitmq:http-client
) is now also optional
.
有关更多详细信息,请参阅其 Javadoc。
See their Javadoc for more information.