STOMP 和 JSON
如果我有 STOMP/JSON AJAX 应用程序,这是否意味着 JSON 在 STOMP 之上运行?
If I have a STOMP/JSON AJAX app, does that mean that JSON is functioning on top of STOMP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您指的是 STOMP (协议),而不是 STOMP (应用程序),那么 JSON 将是通过 STOMP 消息传递协议使用的数据编码方法。 您可以将数据序列化为 JSON,然后将其打包到 STOMP 消息中以发送到连接的另一个端点。
Assuming that you mean STOMP (the protocol), not STOMP (the application), then JSON would be the data encoding method used over the STOMP messaging protocol. You would be serializing your data as JSON, then packaging it inside a STOMP message to send to the other end point of the connection.