Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的下一个项目是一个 RESTful 应用程序,因此 Restlet 似乎是实现的绝佳选择。但是,我找不到对 AMQP 的任何支持。向我的项目添加 AMQP 支持(尤其是 QPID)的最佳方式是什么?我正在考虑扩展 org.restlet.Client 但不知道如何开始。任何指针表示赞赏。
谢谢,科亚
QPID 是 AMQP 协议的一种实现——如果你想要一个 ESB,或者你连接到的服务器。通常您通过 JNDI 或 AMQPConnectionFactory 获得与它的连接(如果我没记错名字的话)。Restlet 与 Servlet 相关。老实说,我看不出一个人和另一个人之间的联系。例如,使用 Restlet,您可以将 HTTP GET 映射到某个路径,但在 GET 之后执行的操作(例如连接到 QPID)完全是您的事。