PayloadRootAnnotationMethodEndpointMapping 不起作用

发布于 2024-11-06 21:30:33 字数 160 浏览 0 评论 0原文

我的 POJO 用 @Endpoint@Payloadroot 注释,并且 Spring 配置文件中有 PayloadRootAnnotationMethodEndpointMapping 但出现错误“未找到适配器” ”。

I have my POJO annotated with @Endpoint and @Payloadroot and I have PayloadRootAnnotationMethodEndpointMapping in by spring configuration file but I am getting error "no adapter found".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

只想待在家 2024-11-13 21:30:33

您需要一个 EndpointMapping (它告诉 Spring-WS 要调用哪个端点),还需要一个 EndpointHandler (它告诉 Spring-WS >如何调用它)。

您拥有第一个(PayloadRootAnnotationMethodEndpointMapping),但您还需要一个EndpointHandler,例如PayloadMethodEndpointAdapter

从 Spring-WS 2.0 开始,您只需声明 ,一切都会得到处理(请参阅 详细信息文档)。

You need both an EndpointMapping (which tells Spring-WS which endpoint to invoke), and also an EndpointHandler (which tells Spring-WS how to invoke it).

You have the first one (the PayloadRootAnnotationMethodEndpointMapping), but you also need an EndpointHandler, such as a PayloadMethodEndpointAdapter.

From Spring-WS 2.0 onwards, you can just declare <sws:annotation-driven/>, and it'll all be taken care of (see docs for details).

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