spring ws MessageEndpoint 与 PayloadEndpoint
这里有什么区别呢?你能举个例子吗?提前致谢
从 PayLoadEndpoint
的源代码中我看到
Source invoke(Source request) throws Exception;
在 MessageEndpoint
中我看到
void invoke(MessageContext messageContext) throws Exception;
这两个选项有什么用
What is the difference here? Can you give an example. Thanks in advance
From the source for PayLoadEndpoint
I see
Source invoke(Source request) throws Exception;
In MessageEndpoint
I see
void invoke(MessageContext messageContext) throws Exception;
What is the use of both options
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我可以从javadoc中得知,当您只需要消息有效负载(传入消息的内容)时使用PayloadEndpoint,而当您需要完整的MessageContext(包括请求/响应等)时使用MessageEndpoint 。
查看:
- PayloadEndpoint
- MessageEndpoint
As far as I can make up from the javadoc, the PayloadEndpoint is used when you just want the message payload (the content of the incoming message) and MessageEndpoint is used when you need the complete MessageContext (including request/response, and so on).
Check out:
- PayloadEndpoint
- MessageEndpoint