spring ws MessageEndpoint 与 PayloadEndpoint

发布于 2024-12-11 19:25:40 字数 299 浏览 0 评论 0原文

这里有什么区别呢?你能举个例子吗?提前致谢

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

童话里做英雄 2024-12-18 19:25:40

据我可以从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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文