GAE 消息服务
假设我希望我的公司服务器与 Google App Engine 进行通信,反之亦然。我知道 GAE 不支持 JMS、RMI 等。这种通信的最佳替代方案是什么?使用任务队列? (我认为HTTP get()
不适合这种通信)。
我的公司服务器和GAE应用程序都使用Spring框架。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
XMPP 是一种功能强大且灵活的消息传递协议,本文介绍了如何操作Java 和 Python 中的 GAE 方面。对于 GAE 之外的 XMPP 实现(使用 Java 和其他语言),请参阅这个 SO 问题< /a>.
要从 GAE 访问公司防火墙后面的大量大量安全数据,Google 建议实施 安全数据连接器(我特意指向带有 GAE 的 SDC 的 Java 教程的 URL)。
XMPP is a powerful and flexible messaging protocol, and this article shows how to do the GAE side of it in both Java and Python. For XMPP implementations (in Java and others) outside of GAE, see this SO question.
For accessing from GAE a lot of bulky secure data that lives behind your corporate firewall, Google recommends implementing the Secure Data Connector (I'm pointing specifically to the URL of the Java tutorial for SDC with GAE).
使用任何基于 HTTP 的 RPC 协议:REST、JSONRPC、SOAP 等。
您说“我认为 http get() 不适合这种通信”——为什么不呢?
Use any of a number of HTTP based RPC protocols: REST, JSONRPC, SOAP, etc.
You say "I think http get() is not suitable for this kind of communication" - why not?
是的,任务队列。它的作用与 JMS 相同。
您还可以使用 Google Cloud Pub/Sub 或任何其他类似服务。
您要做的基本上是配置一个 WebServlet 并实现 HttpServlet doPost 方法。特别是对于 Google Cloud Pub/Subm,您应该使用 url 模式
/_ah/push-handlers
这里是来自 AppEngine 文档中接收器的示例:
Yes, task queue. It does the same that JMS does.
You can also use Google Cloud Pub/Sub or any other similar service.
What you going to do is basically configure a WebServlet and implement the HttpServlet doPost method. In specific for Google Cloud Pub/Subm you should use the url pattern
/_ah/push-handlers
Here the example from the docs of AppEngine for the receiver: