由于缺少 bean 端点映射,迁移到 Spring WS 2.0 失败?
我们使用 PayloadRootQNameEndpointMapping 将端点脚本(基于 groovy 等脚本语言)映射到给定的根 QName。我们最近尝试将spring ws迁移到2.0版本。 PayloadRootQNameEndpointMapping 的 javadoc 显示该类已被标记为已弃用。
PayloadRootQNameEndpointMapping
从 Spring Web Services 2.0 开始已弃用,转而使用PayloadRootAnnotationMethodEndpointMapping
由于注释是静态的,我们无法为脚本端点提供动态概念。到目前为止,我们通常可以将处理脚本端点(提供脚本文件和一些上下文)的 Bean 映射到根 QName
。
简短:我们如何在不使用已弃用的 API 的情况下实现良好的旧 bean 端点到根 QName 的映射?有什么想法吗?
先感谢您。
We used the PayloadRootQNameEndpointMapping
to map endpoint scripts (based on a scripting language like groovy or something else) to a given root QName
. We recently tried to migrate spring ws to version 2.0. The javadoc of the PayloadRootQNameEndpointMapping shows that the class is marked as deprecated.
PayloadRootQNameEndpointMapping
Deprecated as of Spring Web Services 2.0, in favor ofPayloadRootAnnotationMethodEndpointMapping
Since annotations are static we can't provide a dynamic concept for scripting endpoints. Until now we could generically map the Bean which is handling a script endpoint (provided with a script file and some contexts) to the root QName
.
Short: How can we achieve the good old bean endpoint to Root QName mapping without using the deprecated API? Any ideas?
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用类似 SimpleMethodEndpointMapping 编写自己的调度程序?检查来源链接
Can you use something like the SimpleMethodEndpointMapping to write your own dispatcher? Check the link for the source
您可以使用更通用的 XPathPayloadEndpointMapping 其中 xpath 将指向根元素。
You can use more general XPathPayloadEndpointMapping where xpath will point to root element.